.main-container {
    background-color:#e5e5e5;
}

.about-container{
    margin: 0;
    position: absolute; 
    top: 50%; -ms-transform: 
    translateY(-50%); 
    transform: translateY(-50%);
     font-size:70px; 
     font-family: 'Playfair Display', serif; 
     margin-left:50px; 
     color:#424242
}

.right-container {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 63%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color:#424242;
    width: 400px;
}

.about-us-button-yellow {
    background-color: #e5e5e5; 
    color: #ffa000; 
    border:none;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
  }
  
    
  .about-us-button-yellow:hover {
    background-color: #FBB039;
    color: white;
  }
  .about-us-button-yellow:focus {
      border: none;
      outline:none;
  }

.about-hero {
    background-color: #f8f9fa;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 76px; /* Height of the header */
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(251, 176, 57, 0.1) 0%, rgba(251, 176, 57, 0.05) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-text {
    color: #333;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.about-hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.about-buttons {
    display: flex;
    gap: 1rem;
}

.btn-about {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #FBB039;
    color: #333;
}

.btn-primary:hover {
    background-color: #fcc167;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #424242;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #555;
    transform: translateY(-2px);
}

/* Social Media Section */
.social-section {
    padding: 2rem 0;
}

.social-network {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.social-network a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #424242;
    color: #fff;
    transition: all 0.3s ease;
}

.social-network a:hover {
    transform: translateY(-3px);
}

.social-network a.icoFacebook:hover {
    background-color: #3B5998;
}

.social-network a.icoInstagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social-network a.icoYoutube:hover {
    background-color: #FF0000;
}

.social-network a.icoTiktok:hover {
    background-color: #000000;
}

/* Details Section */
.details-section {
    padding: 5rem 0;
    background-color: #fff;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.company-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.company-intro img {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
}

.company-intro .quote {
    font-style: italic;
    color: #666;
    max-width: 800px;
    margin: 1.5rem auto;
    font-size: 1.2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.info-block {
    color: #333;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-block h3 i {
    color: #FBB039;
}

.info-block a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.info-block a:hover {
    color: #FBB039;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-buttons {
        justify-content: center;
    }

    .social-network {
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0;
        margin-top: 56px; /* Adjusted for mobile header height */
    }

    .about-hero-text h1 {
        font-size: 2rem;
        margin-top: 2rem;
    }

    .btn-about {
        padding: 0.75rem 1.5rem;
    }
}