/* ESTILOS GLOBAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

p {
    color: #718096;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(66, 153, 225, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #edf2f7, #e2e8f0);
    color: #4a5568;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    color: #2d3748;
}

/* HEADER STYLES */
header {
    height: 80px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

/* NAVIGATION STYLES */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #4299e1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HAMBURGER MENU STYLES */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0 L1000,100 L0,100 Z" fill="rgba(255,255,255,0.1)"/></svg>') bottom center no-repeat;
    background-size: cover;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FEATURES SECTION */
.features {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    border-radius: 2px;
}

.section-header p {
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* HOW IT WORKS SECTION */
.how-it-works {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.3);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* BENEFITS SECTION */
.benefits {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* PLANS SECTION STYLES */
.plans {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.plans .section-header h2 {
    color: white;
}

.plans .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.plan-card.popular {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.plan-card.popular:before {
    content: "⭐ MAIS POPULAR";
    position: absolute;
    top: 15px;
    right: -35px;
    background: #f59e0b;
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.plan-header {
    margin-bottom: 25px;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.plan-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 25px;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.price-period {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.price-vat {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 5px;
}

.price-yearly {
    color: #10b981;
    font-weight: 600;
    margin-top: 10px;
    font-size: 1rem;
}

.plan-specs {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-icon {
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.spec-label {
    display: flex;
    align-items: center;
    flex: 1;
}

.spec-value {
    font-weight: 600;
    color: white;
    margin-left: 10px;
}

.commission-spec {
    background: rgba(245, 158, 11, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 3px solid #f59e0b;
}

.plan-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.plan-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
}

.plan-cta {
    margin-top: 25px;
}

.btn-plan {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-plan:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-plan.popular {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #f59e0b;
}

.btn-plan.popular:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.free-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* CTA SECTION */
.cta {
    background: white;
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

/* FOOTER STYLES */
footer {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    font-size: 1.8rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.contact-email {
    color: #4299e1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #63b3ed;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4299e1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE GRID ADJUSTMENTS - 2 COLUMNS ON MOBILE */
@media (max-width: 768px) {
    /* Features Section - 2 colunas em mobile */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-card {
        margin-bottom: 0;
        padding: 20px 15px;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        margin-bottom: 0;
        line-height: 1.4;
    }
    
    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    /* How It Works Section - 2 colunas em mobile */
    .steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .step {
        margin-bottom: 0;
        padding: 20px 15px;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .step h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .step p {
        font-size: 0.9rem;
        margin-bottom: 0;
        line-height: 1.4;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    /* Benefits Section - 2 colunas em mobile */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .benefit-item {
        padding: 15px;
        min-height: 120px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 5px;
    }
    
    .benefit-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .benefit-content p {
        font-size: 0.85rem;
        margin-bottom: 0;
        line-height: 1.4;
    }
}

/* Ajustes adicionais para telas muito pequenas */
@media (max-width: 480px) {
    .features-grid,
    .steps,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card,
    .step,
    .benefit-item {
        min-height: auto;
        padding: 15px 10px;
    }
    
    .feature-card h3,
    .step h3,
    .benefit-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p,
    .step p,
    .benefit-content p {
        font-size: 0.9rem;
    }
}

/* Garantir que o layout original seja mantido em desktop */
@media (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step {
        flex: 1;
        min-width: 250px;
        max-width: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .benefit-item {
        flex-direction: row;
        text-align: left;
    }
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    /* HEADER RESPONSIVE */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 120px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f1f1f1;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* PLANS RESPONSIVE */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-card {
        padding: 30px 20px;
    }

    /* FOOTER RESPONSIVE */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    header {
        height: 100px;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        top: 100px;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .price-main {
        font-size: 2rem;
    }
}

/* TERMS PAGE STYLES - Consistent with Terms Page */
.terms-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.terms-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section ul {
    color: #4a5568;
    line-height: 1.8;
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 10px;
}

.acceptance-box {
    background: #f0fdf4;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #bbf7d0;
    margin-top: 40px;
}

.acceptance-box h4 {
    color: #166534;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.acceptance-box p {
    color: #166534;
    margin: 0;
    font-size: 0.95rem;
}

.info-box {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4299e1;
}

.info-box p {
    margin: 0;
    color: #2d3748;
}

/* ABOUT PAGE STYLES - Consistent with Terms Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-content .terms-section {
    margin-bottom: 40px;
}

.about-content .terms-section h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.about-content .terms-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-content .terms-section ul {
    color: #4a5568;
    line-height: 1.8;
    padding-left: 20px;
}

.about-content .terms-section li {
    margin-bottom: 10px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.value-item h4 {
    margin-bottom: 15px;
    color: #2d3748;
    font-size: 1.2rem;
}

.value-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Contact Information */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: #4299e1;
}

.contact-details h4 {
    margin-bottom: 10px;
    color: #2d3748;
    font-size: 1.2rem;
}

.contact-details p {
    color: #4a5568;
    margin-bottom: 5px;
}

.contact-details a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #3182ce;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-container {
    max-width: 600px;
    margin-top: 20px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.form-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.team-member h4 {
    margin-bottom: 8px;
    color: #2d3748;
    font-size: 1.3rem;
}

.member-role {
    color: #4299e1;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1rem;
}

.team-member p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Success/Error Messages */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-message.validation_error {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fed7aa;
}

/* RESPONSIVE STYLES - Consistent with Terms Page */
@media (max-width: 992px) {
    .about-content {
        padding: 40px 30px;
    }
    
    .values-grid,
    .contact-info-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .values-grid,
    .contact-info-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-item {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .value-item,
    .team-member {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 20px 15px;
        margin: 0 15px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .value-item,
    .team-member {
        padding: 20px 15px;
    }
    
    .member-avatar {
        font-size: 3rem;
    }
}