.contact {
            max-width: 700px;
            margin: 3rem auto;
            padding: 3rem 2.5rem;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 87, 183, 0.15);
            border: 1px solid #e9ecef;
        }

        .contact h1 {
            font-size: 2.5rem;
            color: #0057B7;
            text-align: center;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .contact h1::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #0057B7, #1E90FF);
            margin: 1rem auto 2rem;
            border-radius: 2px;
        }

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

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

        .form-group label {
            font-weight: 600;
            color: #0057B7;
            margin-bottom: 0.6rem;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem 1.2rem;
            border: 2px solid #e0e7ff;
            border-radius: 12px;
            font-size: 1rem;
            background: #f8f9fa;
            transition: all 0.3s ease;
            color: #333;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1E90FF;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
            transform: translateY(-2px);
        }

        .form-group input:focus + label,
        .form-group textarea:focus + label {
            color: #1E90FF;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
            font-family: inherit;
        }

        .form-group .error {
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .form-group .error::before {
            content: "⚠";
            font-size: 1rem;
        }

        .btn {
            background: linear-gradient(135deg, #0057B7 0%, #1E90FF 100%);
            color: #fff;
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            align-self: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 87, 183, 0.3);
            margin-top: 1rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 87, 183, 0.4);
        }

        .btn:active {
            transform: translateY(-1px);
        }

        .messages {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .messages li {
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            font-size: 1rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 500;
        }

        .messages li.success {
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            color: #155724;
            border: 1px solid #c3e6cb;
            box-shadow: 0 4px 12px rgba(21, 87, 36, 0.1);
        }

        .messages li.success::before {
            content: "✓";
            font-size: 1.3rem;
            font-weight: bold;
        }

        .messages li.error {
            background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
            color: #721c24;
            border: 1px solid #f5c6cb;
            box-shadow: 0 4px 12px rgba(114, 28, 36, 0.1);
        }

        .messages li.error::before {
            content: "✕";
            font-size: 1.3rem;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .contact {
                margin: 2rem 1rem;
                padding: 2rem 1.5rem;
            }

            .contact h1 {
                font-size: 2rem;
            }

            .btn {
                padding: 0.9rem 2.5rem;
            }
        }


