* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Page transition styles */
#page1, #page2 {
    transition: opacity 0.5s ease-in-out;
}

#page1 {
    opacity: 1;
}

#page2 {
    display: none;
    opacity: 0;
}

/* Remove spacing from page wrapper */
.page-content {
    margin: 0;
    padding: 0;
    display: block;
}

/* Ensure all sections and headers have no default spacing */
header, section {
    margin: 0;
    padding: 0;
    display: block;
}

/* Top Header Bar */
.top-header {
    background: #2D2D2D;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    margin-bottom: 0 !important;
    line-height: normal;
    position: relative;
    z-index: 3;
    border-bottom: 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.says-logo {
    width: 89px;
    height: auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: white;
    letter-spacing: 2px;
}

.exclusive-text {
    /* background: white; */
    color: #ffffff;
    /* padding: 4px 12px; */
    border-radius: 4px;
    font-family: 'Proxima Nova', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.share-btn {
    width: 135px;
    height: 29px;
    background: transparent;
    border: 1px solid white;
    border-radius: 8px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: white;
    color: #2D2D2D;
}

.share-icon {
    width: 16px;
    height: 16px;
}

/* Hero Section - Cover Image */
.hero-section {
    position: relative;
    overflow: visible;
    margin: 0 !important;
    /* margin-top: -26px !important; Pull up to ensure no gap */
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    display: block !important;
    z-index: 2;
    border: 0;
    outline: 0;
}

/* Hero Image Responsive Control */
.hero-mobile {
    display: none !important;
}

.hero-desktop {
    display: block;
}

.hero-section img {
    width: 100%;
    height: auto;
    /* display: block !important; */
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0;
    vertical-align: bottom !important;
    margin-bottom: -225px !important; /* Cut the bottom to blend with purple gradient */
    max-width: 100%;
}

/* Main Content Section */
.main-content {
    background: linear-gradient(180deg, #201C37 0%, #5C4F9D 100%);
    min-height: 100vh;
    padding: 250px 0 80px;
    position: relative;
    z-index: 1;
}

/* Left Side - Image with Dotted Border */
.image-container {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 20px;
}

.dotted-image {
    width: 392px;
    height: 292px;
    border: 3px dashed #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.dotted-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side - Text Content */
.text-container {
    color: white;
    text-align: left;
    padding: 20px;
}

.main-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
    color: white;
}

.sub-heading {
    color: #FBA637;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 25px;
}

.description-text {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button */
.lets-go-btn {
    background: #E9F7FF;
    color: #50BBDA;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.lets-go-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8f8f8;
}

        /* Responsive Design */
        @media (max-width: 992px) {
            .text-container {
                text-align: center;
            }

            .top-header {
                padding: 15px 20px;
            }
        }

        @media (max-width: 1024px) {
            .image-container {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            /* Hide header on mobile */
            .top-header {
                display: none;
            }
            /* Show mobile hero, hide desktop hero */
            .hero-mobile {
                display: block !important;
                margin-bottom: -50px !important;
            }

            .hero-desktop {
                display: none !important;
            }

            .hero-section img {
                margin-bottom: -310px !important;
            }            

            .main-content {
                padding: 250px 0 80px;
            }

            .dotted-image {
                width: 320px;
                height: 240px;
            }

            .main-heading {
                font-size: 24px;
                line-height: 28px;
                text-align: start;
                padding-right: 17px;
            }

            .sub-heading {
                text-align: start;
                font-size: 16px;
            }

            .description-text {
                text-align: start;
                font-size: 16px;
            }

            .hero-section img {
                margin-bottom: -50px;
            }
            
            .text-container {
                text-align: center;
            }
        }