/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', helvetica, arial, sans-serif;
    line-height: 1.4;
    color: #333;
}

/* Main container */
.main-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background shape styles */
.shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    line-height: 0;
}

.shape svg {
    position: absolute;
    left: 50%;
    top: -1px;
    transform: translateX(-50%);
    display: block;
    width: calc(228% + 1.3px);
    height: 100vh;
    min-height: 950px;
}

.shape-fill {
    fill: rgba(186, 228, 252, 0.32);
}

.shape-fill2 {
    fill: #fff;
}

.shape-fill1 {
    fill: #1880bf;
}

.shape-fill4 {
    fill: url(#sky-gradient) #e9f7ff;
}

/* Content wrapper */
.content-wrapper {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    z-index: 1;
}

/* Personalized greeting */
#personalized-greeting {
    display: none;
    margin-bottom: 1rem;
}

.personalized-text {
    color: #38b;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

/* Typography */
h1 {
    color: #38b;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.1rem;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

h1 strong {
    font-weight: 700;
}

h2 {
    color: #38b;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    margin: 0 0 2rem 0;
    line-height: 1.4;
}

/* Button styles */
.action-button {
    display: inline-block;
    background: #f60 url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%223.858%22%20height%3D%226.859%22%20viewBox%3D%220%200%203.858%206.859%22%3E%3Ctitle%3Earrow-right%3C/title%3E%3Cpath%20d%3D%22M67.731%2C35.3l-3%2C3A0.426%2C0.426%2C0%2C0%2C1%2C64%2C38V32a0.426%2C0.426%2C0%2C0%2C1%2C.73-0.3l3%2C3A0.421%2C0.421%2C0%2C0%2C1%2C67.731%2C35.3Z%22%20transform%3D%22translate%28-64%20-31.57%29%22%20fill%3D%22%23fff%22/%3E%3C/svg%3E') right 1rem top 50% / 0.5rem no-repeat;
    border: none;
    border-radius: 7px;
    color: #fff;
    font-family: 'Open Sans', helvetica, arial, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem 1rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.action-button:hover,
.action-button:focus {
    background-color: #eb5e00;
}

/* Store logos section */
.store-logos-confidential {
    position: relative;
    overflow: auto;
    border-top: solid #8dc1e0 1px;
    background: linear-gradient(180deg, #e9f7ff 0%, #fff 40%);
    padding: 3rem 0;
    text-align: center;
}

.store-logos-confidential::after {
    content: "";
    display: table;
    clear: both;
}

.store-logos-confidential h2 {
    text-align: center;
    color: #38b;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    font-size: clamp(1.2rem, 4vw, 2.3rem);
    font-weight: 300;
    max-width: 800px;
}

.store-logos-confidential .product-pile,
.store-logos-confidential .store-logos {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.store-logos-confidential .product-pile {
    width: 100%;
}

.store-logos-confidential .store-logos {
    margin-bottom: 0.5rem;
    width: 85%;
}

/* Footer styles */
.footer {
    position: relative;
    border-top: solid #8dc1e0 1px;
    font-size: 0.8rem;
    padding: 1rem 0;
    color: #084971;
    background: linear-gradient(180deg, #8cc1e0 0%, #71aed4 100%);
}

.footer.firstpage {
    background: linear-gradient(180deg, #8cc1e0 0%, #71aed4 100%);
    border-top-color: #38b;
}

.footer.firstpage a {
    color: #084971 !important;
    font-weight: 700;
}

.footer.firstpage a:hover {
    color: #38b !important;
}

.footer .content-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer .legal {
    text-align: center;
    margin-top: 0;
}

.footer .copyright {
    text-align: center;
    margin-top: 0.5rem;
}

.footer::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .main-container .content-wrapper {
        padding: 1.5rem;
    }
    
    .shape svg {
        height: 100vh;
        min-height: 700px;
    }

    .store-logos-confidential {
        padding: 2rem 0;
    }

    .store-logos-confidential .store-logos {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .main-container .content-wrapper {
        padding: 1rem;
    }
    
    .main-container h1 {
        margin-bottom: 0.5rem;
    }
    
    .main-container h2 {
        margin-bottom: 1.5rem;
    }
    
    .action-button {
        padding: 0.8rem 2rem 0.8rem 1rem;
        background-size: 0.4rem;
    }

    .store-logos-confidential {
        padding: 1.5rem 0;
    }

    .store-logos-confidential h2 {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
} 