* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0A89A6;
    background-image: url('https://images.unsplash.com/photo-1543165365-07232e8ce4a7?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    overflow-x: hidden;
}

/* Add a dark teal overlay so text remains readable */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 137, 166, 0.85);
    /* Teal #0A89A6 with 85% opacity */
    z-index: -1;
}

.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* HERO SECTION */
.hero-section {
    padding: 100px 0 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.badge {
    display: inline-block;
    background-color: #FE7808;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 600;
}

.hero-benefits .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(254, 120, 8, 0.2);
    color: #FE7808;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 0.8rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FE7808;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(254, 120, 8, 0.4);
}

.cta-button i {
    margin-left: 10px;
    font-size: 1.3rem;
}

.cta-button:hover {
    background-color: #e56a06;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 120, 8, 0.6);
}

/* HERO IMAGES - POLAROIDS */
.hero-images {
    flex: 1;
    position: relative;
    height: 500px;
    max-width: 500px;
}

.polaroid {
    position: absolute;
    width: 260px;
    height: 320px;
    object-fit: cover;
    background-color: #fff;
    padding: 12px 12px 45px 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    transition: transform 0.4s ease, z-index 0s;
}

.polaroid:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10 !important;
}

.img1 {
    top: -30px;
    left: -30px;
    transform: rotate(-15deg);
    z-index: 3;
}

.img2 {
    top: 30px;
    right: -50px;
    transform: rotate(18deg);
    z-index: 2;
}

.img3 {
    bottom: -40px;
    left: 120px;
    transform: rotate(-6deg);
    z-index: 4;
}

/* BOTTOM SECTION */
.bottom-section {
    padding: 60px 20px;
    position: relative;
    z-index: 5;
}

.info-card {
    background-color: #ffffff;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    border-radius: 40px;
    padding: 60px 80px;
    color: #333333;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.info-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0A89A6;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.info-card .subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.info-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FE7808;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #444444;
}

.benefits-list .check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(254, 120, 8, 0.1);
    color: #FE7808;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cta-center {
    text-align: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-benefits li {
        justify-content: center;
    }

    .hero-images {
        margin-top: 40px;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        height: auto;
        flex-wrap: wrap;
        gap: 20px;
    }

    .polaroid {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: rotate(0deg) !important;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 60px 0 40px 0;
    }

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

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

    .hero-benefits li {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .polaroid {
        width: 220px;
        height: 270px;
        padding: 8px 8px 35px 8px;
    }

    .info-card {
        padding: 40px 25px;
        border-radius: 25px;
    }

    .info-card h2 {
        font-size: 1.6rem;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .benefits-list li {
        font-size: 0.95rem;
        text-align: left;
    }

    .bottom-section {
        padding: 40px 15px;
    }
}