/* Card Styles */
        .card {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            border: none;
        }

        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .contact-card {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-maroon);
            height: 100%;
        }

        .contact-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

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

        .contact-card p {
            color: var(--text-dark);
            margin: 0;
            line-height: 1.8;
        }

        .contact-box {
            background: #fff9e6;
            border: 2px solid #ffd700;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
            text-align: center;
        }

        .contact-box h6 {
            color: var(--primary-maroon);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-box a {
            color: var(--secondary-maroon);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .contact-box a:hover {
            text-decoration: underline;
        }