/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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


.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-text h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    color: #1a1a1a;
    padding: 10px 14px;
    border-radius: 2px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    position: relative;
    display: inline-block;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 50%, #ffed4e 100%);
}

.hero-text p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-text p i {
    color: #28a745;
    font-size: 1.1rem;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #2d5a27;
    font-weight: 500;
}

.benefit-item i {
    color: #28a745;
    font-size: 1rem;
}

/* Form Container */
.form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.form-section h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Para a última linha com apenas um campo */
.form-row:last-of-type .form-group:last-child {
    display: none;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder {
    color: #999;
}


/* CTA Button */
.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border: none;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    line-height: 1.2;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer-top {
    border-bottom: 1px solid #444;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-top .contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.whatsapp-button i {
    font-size: 1.3rem;
}

.footer-top .hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-top .hours i {
    color: #ffd700;
    font-size: 1.3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-item i {
    color: #ffd700;
    margin-top: 2px;
    width: 16px;
}

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

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

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

.footer-column ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffd700;
}

.social-link i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
        color: #ffc107;
        text-shadow: 0 0 8px rgba(255, 193, 7, 0.3);
    }
    
    .highlight {
        padding: 6px 10px;
        font-size: 0.9em;
        margin: 0 5px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
    
    .footer-top .contact-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .whatsapp-button {
        justify-content: center;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.25;
        margin-bottom: 6px;
        max-width: 100%;
        letter-spacing: 0.3px;
    }
    
    .hero-text h2 {
        font-size: 1.1rem;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 12px;
        letter-spacing: 0.2px;
        color: #ffc107;
        text-shadow: 0 0 6px rgba(255, 193, 7, 0.3);
    }
    
    .highlight {
        padding: 3px 6px;
        font-size: 0.85em;
        margin: 0 6px;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .hero-benefits {
        margin-top: 12px;
        justify-content: center;
    }
    
    .benefit-item {
        font-size: 0.85rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Em mobile, mostrar todos os campos em uma coluna */
    .form-row:last-of-type .form-group:last-child {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 5px;
        padding: 0 5px;
        letter-spacing: 0.2px;
    }
    
    .hero-text h2 {
        font-size: 1rem;
        line-height: 1.2;
        margin-bottom: 10px;
        padding: 0 5px;
        letter-spacing: 0.1px;
        color: #ffc107;
        text-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
    }
    
    .highlight {
        padding: 2px 4px;
        font-size: 0.8em;
        margin: 0 5px;
        border-radius: 1px;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        gap: 3px;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 15px 20px;
        letter-spacing: 0.3px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container {
    animation: fadeInUp 0.6s ease-out;
}

/* Estados de validação */
.form-group input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

/* Loading state para o botão */
.cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cta-button.loading {
    position: relative;
}

.cta-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #1a1a1a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos para links de endereços */
.address-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px;
    border-radius: 5px;
}

.address-link:hover {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.address-link span {
    display: block;
    line-height: 1.4;
}

/* Estilos para páginas internas */
.page-content {
    padding: 80px 0;
    min-height: 80vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.content-sections {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-section h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-section h2 i {
    color: #ffd700;
    font-size: 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Navegação */
.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffd700;
}

/* Quem Somos - Valores */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.value-item i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    font-size: 1rem;
}

/* Team Features */
.team-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.team-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.team-feature i {
    font-size: 1.2rem;
}

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

.differential-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.differential-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-top: 5px;
}

.differential-item h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.differential-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Política de Privacidade */
.data-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.data-type {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.data-type h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-type h3 i {
    color: #ffd700;
}

.data-type ul {
    list-style: none;
    padding: 0;
}

.data-type li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.data-type li:last-child {
    border-bottom: none;
}

/* Usage List */
.usage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.usage-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.usage-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-top: 5px;
}

.usage-item h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.usage-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border-radius: 10px;
    font-weight: 600;
    color: #155724;
}

.security-item i {
    font-size: 1.5rem;
    color: #28a745;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.right-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.right-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.right-item h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.right-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.cookie-type {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.cookie-type h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.cookie-type p {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-method i {
    font-size: 1.2rem;
}

/* Fale Conosco */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section,
.addresses-section,
.contact-form-section,
.faq-section {
    margin-bottom: 60px;
}

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

.contact-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-details p {
    color: #666;
    margin-bottom: 15px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
}

/* Addresses */
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.address-card {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #ffd700;
}

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

.address-header i {
    font-size: 1.5rem;
    color: #ffd700;
}

.address-header h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
}

.address-details p {
    color: #666;
    margin-bottom: 10px;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.map-button:hover {
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.submit-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
}

/* FAQ */
.faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
}

.faq-question i {
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .addresses-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
    }
}
