main#main-content {
    margin-top: 80px;
    /* Add margin to push content below fixed header */
}

/* --- Styles for index.html (Homepage) --- */
.hero {
    padding: 30px 20px;
    /* background-color: #ffffff; Removed to allow body background to show */
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed background-image properties from here as it's now on html::before */
    opacity: 1;
    /* Ensure hero content itself is fully opaque */
    z-index: -1;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a202c;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    color: #4a5568;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 90%;
}

.cta-button {
    background-color: #FF007A;
    color: white !important;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #e6006e;
    transform: translateY(-2px);
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ============================================
   RESPONSIVE BREAKPOINTS:
   - Laptop: 1441px and above (MacBook Air 13-inch and larger)
   - Tablet: 441px - 1440px
   - Mobile: 440px and below (Pixel 10 Pro XL and smaller)
   ============================================ */

/* Tablet styles (441px - 1440px) */
@media (max-width: 1440px) and (min-width: 441px) {
    .hero {
        padding: 25px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

/* Mobile styles (440px and below (Pixel 10 Pro XL and smaller)) */
@media (max-width: 440px) {
    .hero {
        padding: 20px 15px;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}