/* Paleta Dark Mode: Preto com Verde Neon */
:root {
    --primary: #00FF88;        /* Verde neon vibrante */
    --primary-color: #00FF88;  /* Alias para compatibilidade */
    --secondary: #00CC6A;      /* Verde mais escuro */
    --accent: #FFD700;         /* Dourado */
    --dark: #0A0A0A;           /* Preto profundo */
    --bg-dark: #0A0A0A;        /* Alias para compatibilidade */
    --dark-secondary: #1A1A1A; /* Cinza muito escuro */
    --dark-tertiary: #2A2A2A;  /* Cinza escuro */
    --light: #F0F0F0;          /* Cinza muito claro */
    --text: #E0E0E0;           /* Texto claro */
    --text-secondary: #B0B0B0; /* Texto secundário */
    --text-muted: #B0B0B0;     /* Alias para compatibilidade */
    --gradient-start: #000000;
    --gradient-end: #0A2A1A;
    --glass-bg: rgba(26, 26, 26, 0.8); /* Fundo glassmorphism */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Header com efeito glassmorphism escuro */
header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.logo:hover {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}


.logo:hover {
    filter: brightness(0) saturate(100%) invert(89%) sepia(90%) saturate(6853%) hue-rotate(98deg) brightness(120%) contrast(120%);
}

.logo-text-short {
    display: none !important;
}

.logo-text-full {
    display: inline !important;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s;
    position: relative;
}

.mobile-menu-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.mobile-menu-btn span {
    transition: all 0.3s;
}

/* Hero Section com efeito matrix */
.hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Efeito de partículas digitais */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary);
    opacity: 0.5;
    animation: float-up 10s linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-text h1 span {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(0, 255, 136, 0.5); }
    to { text-shadow: 0 0 40px rgba(0, 255, 136, 0.8), 0 0 50px rgba(0, 255, 136, 0.6); }
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.cta-button:hover::before {
    left: 100%;
}

.hero-image {
    position: relative;
}

.hero-visual {
    width: 100%;
    height: 500px;
    background: var(--dark-secondary);
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Terminal/Code effect */
.code-display {
    padding: 30px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--primary);
    position: relative;
    height: 100%;
    overflow: hidden;
}

.code-line {
    margin-bottom: 10px;
    opacity: 0;
    animation: type-in 0.5s forwards;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.3s; }
.code-line:nth-child(3) { animation-delay: 0.5s; }
.code-line:nth-child(4) { animation-delay: 0.7s; }
.code-line:nth-child(5) { animation-delay: 0.9s; }

@keyframes type-in {
    to { opacity: 1; }
}

.floating-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.floating-card.stats {
    top: -30px;
    right: -30px;
    animation: float 3s ease-in-out infinite;
}

.floating-card.graph {
    bottom: -30px;
    left: -30px;
    animation: float 3s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--dark-secondary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    /* Garantir que nenhum overflow interfira com cliques */
    overflow: visible !important;
}

/* Garantir que pseudo-elementos não interfiram */
.services-section::before,
.services-section::after,
.service-card::before,
.service-card::after {
    pointer-events: none !important;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--secondary));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.service-card:hover .service-icon::after {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

.service-card h3 {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.service-card > p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
    margin-top: 1rem;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: rgba(42, 42, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--secondary));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(42, 42, 42, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    background: var(--dark);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--dark-secondary);
    position: relative;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-card {
    background: rgba(42, 42, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.contact-link:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

/* Contact Form Container */
.contact-container {
    display: flex;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    flex: 2;
    background: var(--glass-bg);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

/* Process Timeline */
.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.process-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    opacity: 1;
    animation: fadeInUp 0.6s ease forwards;
}

.process-item:nth-child(1) { animation-delay: 0.1s; }
.process-item:nth-child(2) { animation-delay: 0.2s; }
.process-item:nth-child(3) { animation-delay: 0.3s; }
.process-item:nth-child(4) { animation-delay: 0.4s; }
.process-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-item:nth-child(even) .process-content {
    text-align: right;
    margin-right: 30px;
    margin-left: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.process-number:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

.process-content {
    flex: 1;
    margin-left: 30px;
    max-width: 300px;
}

.process-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 20px;
}

.process-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.faq-item {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: rgba(0, 255, 136, 0.1);
}

.faq-question h3 {
    margin: 0;
    color: white;
    font-size: 18px;
}

.faq-toggle {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    flex: 1;
}

.info-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 18px;
}

.info-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Enhanced Form Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    gap: 12px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
    background: rgba(42, 42, 42, 0.8);
}

.checkmark:hover {
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.2);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark);
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label .checkbox-text {
    flex: 1;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.checkbox-label a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Enhanced Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-details {
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 5px;
    border-left: 3px solid var(--primary);
}

.service-details h4 {
    margin: 0 0 5px 0;
    color: var(--primary);
    font-size: 14px;
}

.service-details p {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    /* Global mobile grid fix - ensure all grids use 1 column */
    .features-grid,
    .services-grid,
    .about-grid,
    .team-grid,
    .contact-cards,
    .stats-container,
    [class*="-grid"],
    [class*="-cards"] {
        grid-template-columns: 1fr !important;
        padding: 0 1rem !important;
        gap: 1.5rem !important;
        max-width: 100% !important;
    }

    /* Specific adjustments */
    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    body {
        overflow-x: hidden;
    }

    /* Global mobile padding fix */
    .hero-content,
    .features-grid,
    .services-grid,
    .stats-container,
    .team-grid,
    .about-grid,
    .contact-content,
    .contact-form-wrapper,
    .footer-content,
    section[class*="section"] .container,
    .section-header {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Process Timeline responsive */
    .process-timeline {
        padding: 1rem;
    }
    
    .process-timeline::before {
        left: 30px;
        transform: none;
    }
    
    .process-item {
        flex-direction: row !important;
        align-items: flex-start;
        margin-bottom: 2rem;
    }
    
    .process-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .process-item:nth-child(even) .process-content {
        text-align: left;
        margin-left: 30px;
        margin-right: 0;
    }
    
    .process-content {
        margin-left: 30px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
        flex-shrink: 0;
    }

    /* Hero responsive */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 300px;
        margin-top: 2rem;
    }

    /* Header/Logo responsive */
    .logo {
        font-size: 1.1rem !important;
        letter-spacing: 1px !important;
    }

    .logo-text-full {
        display: none !important;
    }

    /* Contact container mobile fix */
    .contact-container {
        display: block !important;
        gap: 0 !important;
    }

    /* Info cards and FAQ mobile margins */
    .faq-container {
        margin: 0 1rem !important;
        padding: 0 !important;
    }
    
    .faq-item {
        margin: 0 0 1rem 0 !important;
    }
    
    .contact-info {
        margin: 2rem 0 !important;
        padding: 0 !important;
    }
    
    .info-card {
        margin: 0 0 1rem 0 !important;
    }

    .logo-text-short {
        display: inline !important;
    }

    .logo-img {
        width: 30px !important;
        height: 30px !important;
    }

    /* Navigation responsive */
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(15px);
        border-bottom: 2px solid var(--primary);
        padding: 2rem 0;
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s;
    }

    .nav-links a:hover {
        background: rgba(0, 255, 136, 0.1);
        transform: scale(1.05);
    }

    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1001;
        font-size: 1.8rem;
    }

    .mobile-menu-btn.active {
        color: var(--primary);
        transform: rotate(90deg);
    }

    /* Footer responsive */
    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: none !important;
        max-width: 100% !important;
        text-align: center;
        padding: 0 1rem !important;
        gap: 2.5rem !important;
        margin: 0 auto !important;
        margin-bottom: 2rem !important;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
        line-height: 1.4;
        max-width: 250px;
        margin: 0 auto 0.5rem auto;
        color: var(--text-secondary);
    }

    .footer-brand {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
        margin-bottom: 0.5rem;
    }

    .footer-links {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .footer-links:not(:last-child) {
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    }

    .footer-links h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-links ul li {
        margin-bottom: 0.3rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .social-links {
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 1rem;
        justify-content: center;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Global footer overflow prevention */
    footer,
    .footer-content,
    .footer-brand,
    .footer-links,
    .footer-bottom {
        max-width: 100%;
        overflow-x: hidden;
    }

    .footer-links a:hover {
        transform: translateX(0);
    }

    /* About page responsive */
    .about-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem !important;
        gap: 2rem;
        max-width: 100%;
    }

    .text-content,
    .image-content {
        max-width: 100%;
        min-width: 0;
    }

    .timeline {
        padding: 1rem;
        max-width: 100%;
    }

    .timeline::before {
        left: 20px !important;
        transform: none !important;
        width: 2px;
    }

    .timeline-item {
        display: block !important;
        padding: 0 0 2rem 60px !important;
        margin: 0 !important;
        position: relative;
    }

    /* Override desktop alternating layout */
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        display: block !important;
        flex-direction: unset !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .timeline-content {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 1.5rem !important;
        width: 100% !important;
        background: rgba(42, 42, 42, 0.8) !important;
        border: 1px solid rgba(0, 255, 136, 0.2) !important;
        border-radius: 15px !important;
        backdrop-filter: blur(10px) !important;
    }

    .timeline-dot {
        left: 20px !important;
        top: 1rem !important;
        width: 15px !important;
        height: 15px !important;
        background: var(--primary) !important;
        border: 3px solid var(--dark) !important;
        border-radius: 50% !important;
        position: absolute !important;
        z-index: 2 !important;
        transform: translateX(-50%) !important;
        right: auto !important;
    }

    /* Ensure all dots are in the same position regardless of odd/even */
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    .timeline-year {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .timeline-content h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }

    .timeline-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* Contact responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    /* Services responsive */
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-features {
        margin: 1rem 0;
    }

    .service-details {
        margin-top: 1rem;
    }

    /* Features responsive */
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* Team grid responsive */
    .team-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 2rem;
    }

    /* Stats container responsive */
    .stats-section {
        padding: 40px 0;
        overflow-x: hidden;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem !important;
        gap: 1rem;
        max-width: 100%;
        width: 100%;
    }

    .stat-item {
        padding: 1.5rem 1rem;
        min-width: 0;
        width: 100%;
    }

    .stat-number {
        font-size: 2rem !important;
    }

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

    /* WhatsApp button responsive */
    .whatsapp {
        right: 20px;
        bottom: 20px;
    }

    .whatsapp img {
        width: 45px !important;
        height: 45px;
    }

    /* Floating cards mobile responsive */
    .floating-card {
        display: none !important;
    }

    .floating-card.stats,
    .floating-card.graph {
        display: none !important;
    }

    /* Contact form responsive - from second media query */
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .checkbox-group {
        margin: 1rem 0;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
        line-height: 1.5;
        gap: 10px;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
        margin-top: 1px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.form-group label {
    color: var(--text);
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 1.2rem;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
    min-height: 48px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300FF88' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group select:hover {
    border-color: rgba(0, 255, 136, 0.5);
    background-color: rgba(42, 42, 42, 0.9);
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(42, 42, 42, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.contact-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-card a,
.contact-card span {
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary);
}

/* Contact Container */
.contact-container {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.contact-form-wrapper {
    background: rgba(42, 42, 42, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 4rem;
    backdrop-filter: blur(10px);
}

.contact-form .cta-button {
    margin-top: 1.5rem;
    align-self: center;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    position: relative;
    z-index: 10;
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.3s;
    z-index: -1;
}

.btn-outline:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-outline:hover::before {
    left: 0;
}

/* Footer */
footer {
    background: #000000;
    color: var(--text);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    margin-bottom: 0.5rem;
    position: relative;
}

.footer-links a::before {
    content: '> ';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(15px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.5rem;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

/* WhatsApp Float Button */
.whatsapp {
    position: fixed;
    bottom: 60px;
    z-index: 100000;
    right: 40px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.10);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp:hover {
    animation: pulse 1.5s ease-in-out infinite;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: start;
}

.content-section {
    padding: 100px 0;
    background: var(--dark-secondary);
}

.content-section:nth-child(even) {
    background: var(--dark);
}

.text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary);
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.image-content {
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-member {
    background: rgba(42, 42, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    border: 3px solid var(--primary);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.team-member h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.team-member p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: rgba(42, 42, 42, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    flex: 1;
    max-width: 45%;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 2rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Contact CTA Styles */
.contact-cta {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.quick-contact-item .contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.quick-contact-item h4 {
    color: var(--primary);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.quick-contact-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.contact-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Desktop optimizations for better spacing */
@media (min-width: 1200px) {
    .contact-container {
        max-width: 1200px;
        margin: 5rem auto 0;
        padding: 0 2rem;
    }
    
    .contact-form-wrapper {
        padding: 5rem;
    }
    
    .contact-form {
        gap: 2.5rem;
    }
    
    .form-row {
        gap: 2.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.5rem;
        font-size: 1.1rem;
        min-height: 56px;
    }
    
    .form-group label {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
}
