/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
  }
  
  /* Header Styles */
  .header {
    background-color: #1e3d59;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .header h1 {
    margin: 0;
    font-size: 2.5rem;
    display: inline;
  }
  
  .tableau-logo {
    margin-left: 10px;
    vertical-align: middle;
    height: 30px;  /* Adjust as needed */
  }
  
  .header p {
    margin: 5px 0 0;
    font-size: 1.2rem;
    font-style: italic;
  }
  
  /* Section Styles */
  .content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    color: #1e3d59;
    border-bottom: 2px solid #ff6f61;
    padding-bottom: 5px;
  }
  
  p, ul {
    margin: 15px 0;
  }
  
  ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  ul li {
    margin: 10px 0;
  }
  
  /* Skills Section Styles */
  .skills {
    margin-top: 40px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
  }
  
  .skills h2 {
    color: #1e3d59;
    border-bottom: 2px solid #ff6f61;
    padding-bottom: 5px;
  }
  
  .skills ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .skills ul li {
    margin: 10px 0;
    font-size: 1.1rem;
  }
  
  /* Image Section Styles */
  .image-section {
    margin-top: 40px;
    text-align: center;
  }
  
  .dashboard-image {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .dashboard-image:hover {
    transform: scale(1.05);
  }
  
  .dashboard-link {
    text-decoration: none;
    display: inline-block;
  }
  
  .dashboard-link:hover .dashboard-image {
    transform: scale(1.1);
  }
  
  /* Footer Styles */
  .footer {
    text-align: center;
    padding: 15px;
    background-color: #1e3d59;
    color: white;
    font-size: 0.9rem;
  }
  
  .footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
