
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #657e6b;
    color: #e5e7c5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
  }
  

  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .container-project {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
  }
  .text-content {
    text-align: left;
    flex: 1;
  }
  
  .title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
  }
  
  .info {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #e5e7c5;
  }
  
  .logo {
    width: 450px;
    max-width: 190%;
    margin-left: 2rem;
  }
  
  .logo img {
    width: 200%;
    height: auto;
    display: block;
  }
  
  .bottom-nav {
    display: flex;
    justify-content: center;
    gap: 10rem;
    padding: 1rem;
    background-color: #657e6b;
    border-top: 1px solid #e5e7c5;
  }
  
  .bottom-nav a {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #e5e7c5;
    border: 2px solid #e5e7c5;
    font-size: 0.9rem;
    transition: background 0.2s ease;
  }
  
  .bottom-nav a:hover {
    background-color: #dce281;
  }
  
.about {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }
  
  .about-img img {
    width: 300px;
    height: 300px;
    object-fit:cover;
    border-radius: 50%;
    border: 1px solid #000;
    
  }
  
  .about-text {
    flex: 1;
    max-width: 600px;
  }
  
  .about-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  
  .container {
    display: flex;
    min-height: 90vh;
  }
  
  .image-section {
    flex: 1;
  }
  
  .image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #000;
    border-radius: 30%;
  }
  
  .contact-section {
    flex: 1.5;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .contact-section h1 {
    font-size: 48px;
    margin-bottom: 40px;
  }
 
  .contact-info {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .contact-info p {
    font-size: 16px;
    color: #e5e7c5;
    line-height: 1.5;
  }
  
  .socials {
    margin-top: 20px;
  }
  
  .socials a {
    margin-right: 20px;
    display: inline-block;
  }
  
  .socials img {
    width: 30px;
    height: 30px;
  }
  
  
  .custom-link {
    color: inherit;       
    text-decoration: underline; 
  }
  
  .custom-link:visited {
    color: inherit;        
  }
  
  .custom-link:hover {
    color: inherit;
    text-decoration: underline;
  }
  .project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
  }
  
  .project-gallery img {
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    border-radius: 10px;
    object-fit: cover;
  }
  