/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: white;
    color: #1d1d1b;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 100px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    height: 26px;
    width: auto;
}

/* Title */
.title-container {
    margin-bottom: 60px;
}

.title-image {
    width: 100%;
    max-width: 346px;
    height: auto;
}

/* Decorative Stars */
.star {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('assets/star.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.star-1 {
    top: 725px;
    right: 10%;
    width: 47px;
    height: 40px;
}

.star-2 {
    top: 154px;
    right: 18%;
}

.star-3 {
    top: 69px;
    right: 8%;
}

.star-4 {
    top: 653px;
    left: 42%;
}

/* Product Image */
.product-container {
    position: absolute;
    top: 229px;
    right: 0;
    width: 546px;
    height: 435px;
    z-index: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Content */
.content {
    position: relative;
    z-index: 2;
    max-width: 376px;
    margin-top: 160px;
}

.intro-text {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.section-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
}

.steps-list {
    margin-left: 20px;
    margin-bottom: 30px;
    padding-left: 10px;
}

.steps-list li {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.closing-text {
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.4;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #1d1d1b;
    color: white;
    padding: 12px 50px;
    border-radius: 200px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 30px;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    opacity: 0.8;
}

/* Hide mobile CTA on desktop */
.cta-button-mobile {
    display: none;
}

/* Footer */
.footer {
    position: relative;
    margin-top: 80px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-icon {
    width: 57px;
    height: auto;
}

.copyright {
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.instagram-link {
    color: #1d1d1b;
    text-decoration: underline;
}

.instagram-link:hover {
    text-decoration: none;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .container {
        padding: 24px 34px;
    }

    .logo {
        height: 22px;
    }

    .title-container {
        margin-bottom: 40px;
        text-align: center;
    }

    .title-image {
        max-width: 280px;
    }

    /* Show mobile CTA button */
    .cta-button-mobile {
        display: block;
        text-align: center;
        max-width: 200px;
        margin: 20px auto 30px;
        font-size: 16px;
        padding: 10px 40px;
    }

    /* Hide desktop stars */
    .star {
        display: none;
    }

    /* Reposition product for mobile */
    .product-container {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .product-image {
        width: 100%;
        height: auto;
        max-height: 341px;
        object-fit: contain;
    }

    /* Content adjustments */
    .content {
        max-width: 100%;
        margin-top: 0;
    }

    .intro-text {
        font-size: 18px;
    }

    .closing-text {
        font-size: 14px;
    }

    .cta-button {
        display: block;
        text-align: center;
        max-width: 200px;
        margin: 30px auto 0;
    }

    .footer {
        margin-top: 60px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 20px 20px;
    }

    .title-image {
        max-width: 240px;
    }

    .intro-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 13px;
    }

    .steps-list li {
        font-size: 13px;
    }

    .closing-text {
        font-size: 13px;
    }

    .cta-button {
        font-size: 16px;
        padding: 10px 40px;
    }
}

