.header {
            background-image: url('images/admission-header.jpg') !important; /* Add a relevant background image */
            background-size: cover !important;
            background-position: center !important;
            height: 400px !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .header h1 {
            font-size: 2rem;
            position: relative;
            z-index: 2;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .header {
                height: 200px !important;
            }

            .header h1 {
                font-size: 2rem;
            }
        }

        .title {
            font-size: 1.8rem !important;
            color: #3c92e8;
            margin-bottom: 1.5rem;
        }

        .message {
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .message:hover {
            transform: translateY(-5px);
        }

        .message-header {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .message-body {
            font-size: 1rem;
            line-height: 1.6;
        }

        .button {
            background-color: #3c92e8;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .button:hover {
            background-color: #2a6bb0;
        }

        .visits {
            background-color: #3c92e8;
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .visits h2 {
            margin-bottom: 1rem;
        }

        .button-ones {
            background-color: white;
            color: #3c92e8;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .button-ones:hover {
            background-color: #f0f0f0;
        }
    /* Calendar Section Styling */
.calendar-section {
    background: linear-gradient(135deg, #2c3e50, #34495e); /* Gradient background */
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    max-width: 600px;
}

.calendar-container {
    color: white;
}

.calendar-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.calendar-description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.download-button {
    display: inline-flex;
    align-items: center;
    background: #3498db; /* Blue button color */
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.download-button:hover {
    background: #2980b9; /* Darker blue on hover */
}

.download-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.no-calendar {
    font-size: 1rem;
    color: #e74c3c; /* Red color for error message */
    font-style: italic;
}