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

body {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #CEC6BB;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Container and frame */
.container {
    width: 100%;
    max-width: 840px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-border {
    background-color: #F9F6F1;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-border {
    background-color: #1E2664;
    padding: 5px;
    width: 100%;
    max-width: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-border-2 {
    background-color: #F9F6F1;
    padding: 5px;
    width: 100%;
    max-width: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-frame {
    background-color: #F9F6F1;
    padding: 60px 40px;
    border: 2px solid #1E2664;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 746px;
}

/* Coming Soon Banner */
.coming-soon-banner {
    position: relative;
    display: block;
    margin: 90px auto 106px auto;
    text-align: center;
}

.banner-highlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: 300px;
    z-index: 1;
}

.coming-soon-banner span {
    position: relative;
    z-index: 2;
    font-size: 15px;
    font-weight: 600;
    color: #1E2664;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    display: inline-block;
}

/* Main Title Section */
.main-title {
    margin-bottom: 106px;
    position: relative;
    display: inline-block;
    /*width: auto;*/
    text-align: center;
}

.main-title h1 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.2;
    display: inline-block;
    position: relative;
}

.since-date-image {
    position: absolute;
    left: 100%;
    bottom: -25px;
    margin-left: -70px;
    height: 25px;
    width: auto;
    max-width: 100px;
}

/* Contact Information */
.contact-info {
    margin-bottom: 106px;
}

.contact-info p {
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.2;
}

.cta-text {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 12px;
}

.cta-text strong {
    font-weight: 600;
}

.email-link {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #1E2664;
}

/* Company Branding */
.company-branding {
    margin-top: 40px;
}

.company-logo {
    width: auto;
    max-width: 238px;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.company-tagline {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 8px;
}



/* Responsive Design */
@media (max-width: 768px) {

    
    .main-title h1 {
        font-size: 36px;
    }
    
    .since-date-image {
        position: absolute;
        left: 100%;
        bottom: -25px;
        margin-left: -60px;
        height: 22px;
        width: auto;
        max-width: 80px;
    }
    
    .company-logo {
        max-width: 240px;
    }
    

    
    .banner-highlight {
        max-width: 250px;
    }
}

@media (max-width: 600px) {

.since-date-image {
    position: absolute;
    left: 100%;
    bottom: -25px;
    margin-left: -60px;
    height: 22px;
    width: auto;
    max-width: 80px;
}
}

@media (max-width: 480px) {

    
    .main-title h1 {
        font-size: 28px;
    }
    
    .since-date-image {
        position: absolute;
        height: 18px;
        width: auto;
        max-width: 70px;
    }
    
    .company-logo {
        max-width: 180px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
    
    .coming-soon-banner {
        position: relative;
        display: block;
        margin: 40px auto 106px auto;
        text-align: center;
    }

}
