        :root {
            --primary-green: #98e23f;
            --light-green: #E8F5E8;
            --dark-teal: #093b40;
            --dark-bg: #1a1a1a;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --dark-gray: #212121;
            --white: #ffffff;
            --font-family:
                    'Inter',
                    -apple-system,
                    BlinkMacSystemFont,
                    'Segoe UI',
                    Roboto,
                    Oxygen,
                    Ubuntu,
                    Cantarell,
                    'Open Sans',
                    sans-serif;

            --font-poppins: 'Poppins', sans-serif;
        }
        body {
            font-family: var(--font-family);
            color: var(--dark-gray);
            background-color: var(--white);
            line-height: 1.6;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand img {
            height: 40px;
        }
        .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            font-size: 0.85rem;
        }
        .nav-link:hover {
            color: var(--dark-teal) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--dark-teal);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .btn-primary {
            background-color: var(--dark-teal);
            border-color: var(--dark-teal);
            border-radius: 50px;
            padding: 0.75rem 2rem;
            color: var(--white);
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            color: var(--dark-gray);
        }
        .btn-outline-primary {
            border-color: #9ca3af;
            color: #9ca3af;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            color: var(--white);
        }
        .mobile-menu {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .mobile-menu .nav-link {
            padding: 0.75rem 1rem;
            display: block;
        }
        .hero {
            background: linear-gradient(to bottom right, var(--dark-bg) 0%, var(--dark-teal) 50%, var(--dark-bg) 100%);
            color: var(--white);
            padding-top: 8rem;
            padding-bottom: 5rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, var(--primary-green)/20, transparent), radial-gradient(circle at center, var(--primary-green)/10, transparent);
            transition: all 0.3s ease;
            background-size: 200% 200%;
        }
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.1;
            font-family: var(--font-poppins);
        }
        .hero .hero-title span {
            color: var(--primary-green);
            font-weight: 700;
        }
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 500px;
        }
        .hero .btn {
            border-radius: 50px;
            padding: 0.875rem 2rem;
            font-weight: 600;
            margin-right: 1rem;
            transition: all 0.3s ease;
        }
        .hero .btn:last-child {
            margin-right: 0;
        }
        .hero .btn:hover {
            transform: scale(1.05);
        }
        .dashboard-mock {
            background: linear-gradient(to bottom right, var(--dark-teal), #0a4a50);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,0.1);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        .dashboard-mock:hover {
            transform: scale(1.05);
        }
        .dashboard-mock::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        }
        .dashboard-mock h5 {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            font-size: 1.125rem;
        }
        .event-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-left: auto;
            font-size: 0.875rem;
            color: rgba(255,255,255,0.8);
        }
        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary-green);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        .dashboard-mock .metric-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .budget-metric, .small-metric {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.2);
            padding: 1.25rem;
            transition: all 0.5s ease;
        }
        .budget-metric.active, .small-metric.active {
            transform: scale(1.05);
            background: rgba(255,255,255,0.2);
        }
        .budget-metric h6 {
            color: rgba(255,255,255,0.7);
            font-size: 0.75rem;
            margin-bottom: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .budget-metric .amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.5rem;
        }
        .budget-metric .progress {
            height: 4px;
            background: rgba(255,255,255,0.1);
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 0.25rem;
        }
        .budget-metric .progress-bar {
            height: 100%;
            background: var(--primary-green);
            border-radius: 2px;
            transition: width 1s ease;
            width: 0%;
        }
        .budget-metric.active .progress-bar {
            width: 65%;
        }
        .small-metric {
            text-align: center;
            padding: 1.25rem 1rem;
        }
        .small-metric .label {
            color: rgba(255,255,255,0.7);
            font-size: 0.75rem;
            margin-bottom: 0.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .small-metric .status-dot-small {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #FF9800;
        }
        .small-metric .value {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
        }
        .small-metric .subtext {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.6);
            margin-top: 0.25rem;
        }
        .activity-section h6 {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .activity-item {
            display: flex;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 0.875rem;
            animation: slide-in 0.5s ease-out;
        }
        .activity-item:last-child {
            border-bottom: none;
        }
        .activity-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: rgba(255,255,255,0.5);
            font-size: 0.75rem;
            flex-shrink: 0;
        }
        .activity-details {
            flex: 1;
            color: rgba(255,255,255,0.9);
            min-width: 0;
        }
        .activity-details p {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .activity-time {
            color: rgba(255,255,255,0.6);
            font-size: 0.75rem;
        }
        .activity-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-align: right;
            flex-shrink: 0;
        }
        .activity-amount {
            font-weight: 600;
            color: var(--white);
            white-space: nowrap;
        }
        .activity-status {
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        .status-approved, .status-paid {
            background: rgba(152, 226, 63, 0.2);
            color: var(--primary-green);
        }
        .status-pending {
            background: rgba(255, 152, 0, 0.2);
            color: #FF9800;
        }
        .brands {
            padding: 5rem 0;
            background: linear-gradient(to bottom right, #f2f2f2 0%, #f1f1f1 50%, white 100%);
            position: relative;
            overflow: hidden;
        }
        .brands::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, var(--dark-teal)/5, transparent), radial-gradient(circle at center, var(--dark-teal)/3, transparent);
            opacity: 0.5;
        }
        .brands .container {
            position: relative;
            z-index: 1;
        }
        .brands-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 3rem;
        }
        .brands-logos img {
            height: 4rem;
            width: auto;
            opacity: 0.6;
            transition: all 0.3s ease;
            filter: grayscale(100%);
        }
        .brands-logos a:hover img {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.1);
        }
        .steps-section {
            padding: 5rem 0;
            background: linear-gradient(to bottom right, #f2f2f2 0%, #f1f1f1 50%, white 100%);
            position: relative;
            overflow: hidden;
        }
        .steps-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, var(--dark-teal)/5, transparent), radial-gradient(circle at center, var(--dark-teal)/3, transparent);
            opacity: 0.5;
        }
        .steps-section .container {
            position: relative;
            z-index: 1;
        }
        .step-badge {
            display: inline-block;
            background: var(--primary-green);
            color: var(--dark-gray);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
            box-shadow: 0 4px 12px rgba(152, 226, 63, 0.3);
        }
        .step-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
        }
        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            border-color: var(--primary-green);
        }
        .step-icon-container {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(152, 226, 63, 0.3), 0 0 40px rgba(9, 59, 64, 0.2);
            animation: glow 2s ease-in-out infinite;
        }
        .step-icon-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom right, var(--dark-teal), #0a4a50);
            border-radius: 50%;
        }
        .step-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            z-index: 1;
            position: relative;
        }
        .step-card h5 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 1rem;
        }
        .step-card p {
            color: var(--medium-gray);
            font-size: 0.875rem;
        }
        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(152, 226, 63, 0.3), 0 0 40px rgba(9, 59, 64, 0.2); }
            50% { box-shadow: 0 0 30px rgba(152, 226, 63, 0.6), 0 0 60px rgba(9, 59, 64, 0.4); }
        }
        .faq {
            padding: 5rem 0;
            background: var(--white);
        }
        .faq-badge {
            display: inline-block;
            background: var(--primary-green);
            color: var(--dark-gray);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
            box-shadow: 0 4px 12px rgba(152, 226, 63, 0.3);
        }
        .faq h2 {
            font-family: var(--font-poppins);
            font-weight: 700;
        }
        .faq p {
            font-family: var(--font-family);
        }
        .faq-item {
            background: var(--white);
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            padding: 1.5rem;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }
        .faq-item:hover {
            border-color: var(--primary-green);
            box-shadow: 0 8px 25px rgba(152, 226, 63, 0.1);
        }
        .faq-question {
            font-weight: 600;
            font-size: 1.125rem;
            color: var(--dark-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            text-align: left;
            padding: 0;
            border: none;
            background: none;
            cursor: pointer;
            font-family: var(--font-poppins);
        }
        .faq-answer {
            margin-top: 1rem;
            color: var(--medium-gray);
            font-size: 1rem;
            font-family: var(--font-family);
        }
        .chevron {
            transition: transform 0.3s ease;
            color: var(--dark-teal);
        }
        .faq-item.open .chevron {
            transform: rotate(180deg);
        }
        /* Redesigned Features Section to Match React Style */
        .features {
            padding: 5rem 0;
            background: var(--white);
        }
        .features-badge {
            display: inline-block;
            background: var(--primary-green);
            color: var(--dark-gray);
            text-transform: uppercase;
            font-weight: 600;
            font-size: 0.75rem;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
            box-shadow: 0 4px 12px rgba(152, 226, 63, 0.3);
        }
        .features h2 {
            font-family: var(--font-poppins);
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark-gray);
        }
        .features p {
            font-size: 1.125rem;
            color: var(--medium-gray);
            max-width: 32rem;
            margin: 0 auto 4rem;
        }
        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .feature-card:hover {
            border-color: var(--primary-green);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            transform: translateY(-0.5rem);
        }
        .feature-icon-container {
            width: 4rem;
            height: 4rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: transform 0.3s ease;
        }
        .feature-card:hover .feature-icon-container {
            transform: scale(1.05);
        }
        .feature-icon {
            font-size: 1.5rem;
            color: var(--white);
        }
        /* Gradient backgrounds for icons matching React */
        .icon-blue { background: linear-gradient(to bottom right, #3b82f6, #1d4ed8); }
        .icon-purple { background: linear-gradient(to bottom right, #8b5cf6, #6d28d9); }
        .icon-green { background: linear-gradient(to bottom right, #22c55e, #16a34a); }
        .icon-orange { background: linear-gradient(to bottom right, #f97316, #ea580c); }
        .icon-pink { background: linear-gradient(to bottom right, #ec4899, #db2777); }
        .icon-teal { background: linear-gradient(to bottom right, #14b8a6, #0d9488); }
        .feature-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 0.75rem;
        }
        .feature-tag {
            background: #f3f4f6;
            color: #6b7280;
            font-size: 0.75rem;
            padding: 0.125rem 0.5rem;
            border-radius: 9999px;
            font-weight: 500;
            display: inline-block;
            margin-left: 0.5rem;
        }
        .feature-description {
            color: #6b7280;
            font-size: 0.875rem;
            line-height: 1.5;
        }
        @media (min-width: 992px) {
            .features h2 { font-size: 3rem; }
        }
        .footer {
            background-color: var(--white);
            color: var(--dark-gray);
            padding: 3rem 0 1.5rem;
            border-top: 1px solid #e9ecef;
        }
        .footer-logo {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .footer-logo .logo-icon {
            color: var(--dark-teal);
            margin-right: 0.5rem;
        }
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--light-gray);
            border-radius: 50%;
            color: var(--medium-gray);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1rem;
        }
        .social-icons a:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: translateY(-2px);
        }
        .newsletter-section h6 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .newsletter-section p {
            color: var(--medium-gray);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        .newsletter-input {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 0.75rem;
            margin-bottom: 1rem;
            width: 100%;
        }
        .btn-subscribe {
            background: var(--primary-green);
            color: var(--white);
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            width: 100%;
            font-weight: 500;
        }
        .btn-subscribe:hover {
            background: var(--dark-teal);
            color: var(--white);
        }
        .footer-section h6 {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-gray);
        }
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        .footer-section ul li a {
            color: var(--medium-gray);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }
        .footer-section ul li a:hover {
            color: var(--primary-green);
        }
        .footer-bottom {
            border-top: 1px solid #e9ecef;
            padding-top: 2rem;
            margin-top: 2rem;
            text-align: center;
            color: var(--medium-gray);
            font-size: 0.9rem;
        }
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary-green);
            color: var(--white);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            transition: opacity 0.3s;
            font-size: 1.2rem;
        }
        .scroll-top.show {
            display: flex;
        }
        /* Animations */
        @keyframes fade-in {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes slide-in {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .animate-fade-in {
            animation: fade-in 0.8s ease-out;
        }
        .animate-fade-in-delay {
            animation: fade-in 0.8s ease-out 0.3s both;
        }
        .animate-fade-in-delay-2 {
            animation: fade-in 0.8s ease-out 0.5s both;
        }
        .animate-slide-in {
            animation: slide-in 0.5s ease-out both;
        }
        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .hero-content { flex-direction: column; text-align: center; }
            .dashboard-mock { margin-left: 0; margin-top: 2rem; order: -1; width: 100%; }
            .brands-logos { gap: 2rem; justify-content: center; flex-direction: column; }
            .metric-grid { grid-template-columns: 1fr; }
            .dashboard-mock:hover { transform: none; }
            .step-cards { grid-template-columns: 1fr; }
            .faq .row { grid-template-columns: 1fr; }
            .features .row { grid-template-columns: 1fr !important; }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1rem; }
            .step-cards .row, .row.g-4 { flex-direction: column; }
            .brands-logos { gap: 1rem; }
            .logo-placeholder { width: 100px; height: 50px; font-size: 0.7rem; }
            .social-icons { justify-content: center; }
            .footer { padding: 2rem 0; text-align: center; }
            .footer .row { flex-direction: column; gap: 2rem; }
            .faq-question { font-size: 1rem; }
            .hero .btn { margin-bottom: 1rem; width: 100%; }
            .step-icon-container { width: 60px; height: 60px; }
            .step-icon { font-size: 2rem; }
            .features h2 { font-size: 2rem; }
            .feature-card { padding: 1.5rem; }
        }
        @media (max-width: 576px) {
            .hero { padding-top: 6rem; padding-bottom: 3rem; }
            .hero h1 { font-size: 2rem; }
            .section-badge { padding: 0.4rem 1rem; font-size: 0.9rem; }
            .btn-lg { padding: 0.6rem 1.5rem; font-size: 1rem; }
            .brands-logos { gap: 2rem; }
            .step-card { padding: 1.5rem; }
            .feature-icon-container { width: 3rem; height: 3rem; }
            .feature-icon { font-size: 1.25rem; }
        }
        /* Modal Custom Styles */
        .modal-content {
            border-radius: 16px;
            border: none;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .modal-header {
            border-bottom: 1px solid #e5e7eb;
            padding-bottom: 1rem;
        }
        .modal-title {
            font-weight: 700;
            color: var(--dark-gray);
            font-family: var(--font-poppins);
        }
        .modal-body {
            padding: 2rem;
        }
        .modal-body .form-label {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
        }
        .modal-body .form-control {
            border: 1px solid #d1d5db;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
        }
        .modal-body .form-control:focus {
            border-color: var(--dark-teal);
            box-shadow: 0 0 0 3px rgba(9, 59, 64, 0.1);
        }
        .modal-body .btn-primary {
            background-color: var(--dark-teal);
            border-color: var(--dark-teal);
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            width: 100%;
        }
        .modal-body .btn-primary:hover {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            color: var(--dark-gray);
        }
        .contact {
        padding: 5rem 0;
        background: var(--white);
        }

        .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 6rem; /* Updated for "under the 6px in a row" interpretation */
        }

        .contact-card {
        background: var(--white);
        border: 2px solid #e5e7eb; /* Default border */
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .contact-card:hover {
        border-color: var(--primary-green); /* Green border on hover */
        box-shadow: 0 8px 20px rgba(152, 226, 63, 0.2);
        transform: scale(1.02); /* Subtle scale for engagement */
        }

        .icon-container {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
        background: linear-gradient(to bottom right, var(--dark-teal), #0a4a50);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.5rem;
        }

        .contact-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--dark-gray);
        margin-bottom: 0.5rem;
        }

        .contact-card p {
        color: var(--medium-gray);
        font-size: 0.875rem;
        margin-bottom: 1rem;
        }

        .contact-link {
        color: var(--dark-teal);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
        }

        .contact-link:hover {
        color: var(--primary-green);
        }

        .form-container {
        background: var(--light-gray);
        border-radius: 16px;
        padding: 3rem 6rem 3rem; /* Updated for "3px *6px*3px" interpretation (using rem units) */
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .form-container h2 {
        font-family: var(--font-poppins);
        font-weight: 700;
        text-align: center;
        margin-bottom: 2rem;
        }

        .form-row {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        }

        .form-group {
        flex: 1;
        }

        .form-label {
        font-weight: 600;
        color: var(--dark-gray);
        margin-bottom: 0.5rem;
        display: block;
        }

        .form-control {
        border: 1px solid #d1d5db;
        border-radius: 8px;
        padding: 0.75rem 1rem;
        width: 100%;
        }

        .form-control:focus {
        border-color: var(--primary-green);
        box-shadow: 0 0 0 3px rgba(152, 226, 63, 0.1);
        }

        .form-submit {
        background: var(--primary-green);
        border: none;
        color: var(--dark-gray);
        font-weight: 600;
        padding: 0.75rem 3rem; /* Updated for "not more than 3 px" – horizontal padding capped at 3rem */
        border-radius: 50px;
        width: auto; /* Not full width */
        transition: all 0.3s;
        margin: 0 auto; /* Center the button */
        margin-top: 0.5rem;
        display: block; /* Ensure centering works */
        }

        .form-submit:hover {
        background: var(--dark-teal);
        color: var(--white);
        }

        @media (max-width: 768px) {
        .form-row {
            flex-direction: column;
            gap: 1rem;
        }

        .form-container {
            padding: 2rem 1rem 2rem; /* Scale down padding on mobile for better fit */
        }

        .form-submit {
            width: 100%; /* Full width on mobile */
            padding: 0.95rem 1.5rem; /* Adjust padding on mobile */
            max-width: none;
        }
        }