/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

.large-text {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #8B4513;
    color: white;
}

.btn-primary:hover {
    background-color: #A0522D;
}

.btn-secondary {
    background-color: #6B7280;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-outline:hover {
    background-color: #8B4513;
    color: white;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1F2937;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8B4513;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F3E5AB 0%, #E6D7B7 100%);
    padding: 100px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 80px 0;
}

.page-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
}

.breadcrumb {
    margin-top: 20px;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #8B4513;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Grid Layouts */
.info-grid,
.services-grid,
.benefits-grid,
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Cards */
.info-card,
.service-card,
.benefit-item,
.principle-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover,
.service-card:hover {
    transform: translateY(-5px);
}

.info-card img,
.service-card img,
.benefit-item img,
.principle-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #F9FAFB;
}

/* Company Info */
.company-info {
    padding: 80px 0;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background-color: #F9FAFB;
}

/* Achievements */
.achievements {
    padding: 80px 0;
    background-color: #8B4513;
    color: white;
}

.achievements .section-header h2,
.achievements .section-header p {
    color: white;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
}

.stat-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #F3E5AB;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.quote-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.3;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: #F3E5AB;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    gap: 10px;
}

.form-group input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
}

.form-note a {
    color: #8B4513;
}

/* Contact */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item img {
    width: 50px;
    height: 50px;
}

.contact-form {
    background: #F9FAFB;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

/* Footer */
.footer {
    background-color: #1F2937;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 40px;
    height: 40px;
}

.footer-brand h3 {
    color: #F3E5AB;
}

.footer-section h4 {
    color: #F3E5AB;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F3E5AB;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9CA3AF;
}

/* Legal Pages */
.legal-page {
    padding: 40px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #8B4513;
    border-bottom: 2px solid #F3E5AB;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.legal-section h3 {
    color: #A0522D;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-navigation {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-info {
    background-color: #F9FAFB;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

/* Thank You Page */
.thank-you {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.thank-you h1 {
    color: #8B4513;
    font-size: 3rem;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.thank-you-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 50px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.detail-item img {
    width: 50px;
    height: 50px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    color: #8B4513;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #8B4513;
    font-weight: bold;
}

.faq-answer {
    padding-bottom: 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content,
    .page-header-content,
    .newsletter-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .info-grid,
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-actions,
    .legal-navigation {
        flex-direction: column;
        align-items: center;
    }
}

/* ===============================================
   Empresa.html Specific Styles
   =============================================== */

/* Company Story Section */
.company-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Mission & Vision Cards */
.mission-vision {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.mv-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.mv-card h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mv-card ul {
    text-align: left;
    margin-top: 20px;
}

.mv-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.mv-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: bold;
}

/* Principles Section */
.principles {
    padding: 80px 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.principle-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    border-left: 4px solid #8B4513;
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.principle-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.principle-item h3 {
    color: #8B4513;
    margin-bottom: 15px;
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.team-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.team-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.team-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 5px;
}

.team-stat .stat-label {
    font-size: 0.9rem;
    color: #666;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Certifications */
.certifications {
    padding: 80px 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cert-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.cert-item h3 {
    color: #8B4513;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.cta-text h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-text p {
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}
.cta-buttons .btn-outline{
    border: 1px solid #fff;
    color: #fff;
}

/* ===============================================
   Servicos.html Specific Styles
   =============================================== */

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.overview-stats .stat-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

/* Main Services Details */
.main-services {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.service-detail {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rating {
    color: #DAA520;
    font-size: 1.2rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: bold;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background-color: #F3E5AB;
    border-radius: 8px;
}

.price-from {
    font-size: 0.9rem;
    color: #666;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.service-advantages {
    padding: 25px 40px;
    background-color: #F9FAFB;
    border-top: 1px solid #E5E7EB;
}

.service-advantages h4 {
    color: #8B4513;
    margin-bottom: 20px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.advantage-item img {
    width: 30px;
    height: 30px;
}

.advantage-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Process Section */
.process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

.process-step img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.process-step h3 {
    color: #8B4513;
    margin-bottom: 10px;
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.brand-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-item img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.brand-item h3 {
    color: #8B4513;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-question {
    background-color: #F9FAFB;
    border-radius: 5px;
}

/* ===============================================
   Thanks.html Specific Styles
   =============================================== */

/* Newsletter Thank You */
.newsletter-thank-you {
    padding: 60px 0;
    background-color: #F3E5AB;
}

.newsletter-thanks-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.benefit-item img {
    width: 40px;
    height: 40px;
}

.benefit-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.additional-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.additional-item:hover {
    transform: translateY(-5px);
}

.additional-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.additional-item h3 {
    color: #8B4513;
    margin-bottom: 15px;
}

.link-arrow {
    color: #8B4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #A0522D;
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-option {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
}

.contact-option img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.contact-option h3 {
    color: #8B4513;
    margin-bottom: 10px;
}

.contact-option p {
    margin-bottom: 20px;
    color: #666;
}

/* Enhanced Responsive Design for New Sections */
@media (max-width: 768px) {
    .story-content,
    .team-content,
    .overview-content,
    .service-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-grid,
    .principles-grid,
    .certifications-grid,
    .brands-grid,
    .additional-grid,
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-advantages .advantages-grid {
        grid-template-columns: 1fr;
    }
}

.nav-menu.active {
    position: absolute;
    top: 80px;
    left: 0px;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    background-color: #fff;
    z-index: 1000;
}