/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Unique banner container */
.unique-banner-container {
    width: 100%;
    height: 96vh; /* Increased by 20% from 80vh */
    background: url('bali-yogshala-yoga-teacher-training-course-bali.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Removed the overlay */

/* Banner content */
.unique-banner-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
}

/* Heading and paragraph */
.unique-banner-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.unique-banner-content p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .unique-banner-container {
        height: 72vh; /* Adjusted height for smaller screens */
    }
    .unique-banner-content h1 {
        font-size: 2rem;
    }
    .unique-banner-content p {
        font-size: 1.2rem;
    }
}
