.contact {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 50px;
            animation: slideDown 0.8s ease-out;
        }

        .contact-header h1 {
            font-size: 36px;
            color: #333;
            margin-bottom: 10px;
        }

        .contact-header p {
            font-size: 16px;
            color: #666;
        }

        .contact-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: slideUp 0.8s ease-out;
            border-top: 4px solid transparent;
        }

        .contact-card:nth-child(1) {
            animation-delay: 0.1s;
            border-top-color: #2d5044;
        }

        .contact-card:nth-child(2) {
            animation-delay: 0.2s;
            border-top-color: #2d5044;
        }

        .contact-card:nth-child(3) {
            animation-delay: 0.3s;
            border-top-color: #2d5044;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .contact-icon {
            width: 35px;
            height: 35px;
            background: #2d5044;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 20px;
            color: white;
            transition: all 0.3s ease;
        }

        .contact-card:nth-child(2) .contact-icon {
            background: #2d5044;
        }

        .contact-card:nth-child(3) .contact-icon {
            background: #2d5044;
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .contact-card h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .contact-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .divider {
            width: 100%;;
            height: 2px;
            background: linear-gradient(to right, transparent, #ddd, transparent);
            margin: 40px 0;
        }

        .contact-form-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            animation: slideUp 0.9s ease-out 0.4s both;
        }

        .form-section h2 {
            font-size: 28px;
            color: #2d5044;
            margin-bottom: 25px;
            animation: slideRight 0.8s ease-out 0.5s both;
        }

        .form-group {
            margin-bottom: 18px;
            animation: slideUp 0.8s ease-out backwards;
        }

        .form-group:nth-child(1) { animation-delay: 0.6s; }
        .form-group:nth-child(2) { animation-delay: 0.7s; }
        .form-group:nth-child(3) { animation-delay: 0.8s; }
        .form-group:nth-child(4) { animation-delay: 0.9s; }
        .form-group:nth-child(5) { animation-delay: 1s; }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e88e5;
            box-shadow: 0 0 8px rgba(30, 136, 229, 0.2);
            transform: scale(1.02);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #aaa;
        }

        .recaptcha-wrapper {
            margin-bottom: 20px;
            animation: slideUp 0.8s ease-out 1.1s both;
        }

        .submit-btn {
            background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
            color: white;
            padding: 0px 25px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: slideUp 0.8s ease-out 1.2s both;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .map-section {
            border-radius: 12px;
            overflow: hidden;
            
            animation: slideRight 0.8s ease-out 0.5s both;
        }

        .map-section iframe {
            width: 100%;
            height: 500px;
            border: none;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-header h1 {
                font-size: 28px;
            }

            .contact-cards-container {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 30px;
            }

            .contact-form-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .form-section h2 {
                font-size: 24px;
            }

            .map-section iframe {
                height: 300px;
            }

            .contact-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            

            .contact-header h1 {
                font-size: 24px;
            }

            .contact-header p {
                font-size: 14px;
            }

            .contact-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .contact-card h3 {
                font-size: 18px;
            }

            .contact-card p {
                font-size: 13px;
            }

            .form-section h2 {
                font-size: 20px;
            }

            .submit-btn {
                width: 100%;
            }

            .map-section iframe {
                height: 250px;
            }
        }