/* Standard Page Specific Styles */

/* Logo Styles - Standard page specific sizing */
.logo img, .header-blue-logo img {
    height: 32px;
    width: auto;
    max-width: 100%;
}

/* Standard page specific white content positioning */
.landing-white .logo-section-right {
    height: 48px;
}

/* Main container */
.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 60vh;
    width: 100vw;
    position: relative;
    box-sizing: border-box;
}

/* Header container */
.header-container {
    max-width: 35vw;
    width: fit-content;
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    border-radius: 12px;
    padding: 30px 30px 0 30px;
    box-sizing: border-box;
    flex: 0 0 auto;
    order: 1;
}

/* Left section bottom padding */
.left-section-bottom-padding {
    width: 100%;
    height: 48px;
    background-color: #040D81;
    flex: 0 0 auto;
    order: 2;
    margin: 0;
}

.page-title {
    display: inline-block;
    background-color: #040D81;
    border-radius: 6.4px 6.4px 0 0;
    padding: 6.4px 25.6px;
    align-self: flex-start;
}

.page-main-title {
    color: #f4f4f4;
    font-size: 0.768rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
    padding: 0;
    text-align: left;
}

.page-subtitle {
    width: fit-content;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #040D81;
    padding: 25.6px;
    border-radius: 0 6.4px 0 0;
    position: relative;
}

/* Inverted corner elements for page-subtitle - bottom left and right */
.corner-subtitle-bottom-left,
.corner-subtitle-bottom-right {
    position: absolute;
    bottom: 0;
    width: 8px;
    height: 8px;
    z-index: 1;
}

.corner-subtitle-bottom-left {
    left: -8px;
    background: radial-gradient(circle at 0 0, transparent 8px, #040D81 8px);
}

.corner-subtitle-bottom-right {
    right: -8px;
    background: radial-gradient(circle at 100% 0, transparent 8px, #040D81 8px);
}

.page-subtitle-text {
    color: #f4f4f4;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    text-align: left;
}





.logo-section-right {
    width: 50%;
    height: 48px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 32px;
    box-sizing: border-box;
    border-radius: 9.6px;
}

.logo, .header-blue-logo {
    display: flex;
    align-items: center;
    gap: 9.6px;
}


.main-content-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 32px;
}

.main-title {
    text-align: center;
    color: #040D81;
    font-size: 38.4px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.title-line {
    display: block;
    position: relative;
    margin-bottom: 6.4px;
    font-size: 6.4rem;
}



.bottom-text {
    display: flex;
    flex-direction: column;
    gap: 3.2px;
    padding: 32px;
}

.bottom-text-line {
    font-size: 0.96rem;
    font-weight: 600;
    color: #040D81;
}

/* WordPress Content Section */
.wordpress-content-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #040D81;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 64px 0;
}

.wordpress-content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.wordpress-content-left {
    width: 40%;
    height: 100%;
    background-color: #040D81;
}

/* White logo overlay */
.white-logo-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 32px;
    padding-top: 6.4px;
    box-sizing: border-box;
    z-index: 20;
    transition: opacity 200ms ease, position 0s ease;
    transform: translateY(0);
}

/* Responsive adjustments for header container */
@media (max-width: 1499px) {
    .header-container {
        max-width: 45vw;
    }
}

@media (max-width: 1199px) {
    .header-container {
        max-width: 65vw;
    }
}

@media (max-width: 1023px) {
    .header-container {
        max-width: 75vw;
    }
}

/* Mobile adjustments for hamburger menu mode */
@media (max-width: 768px) {
    .header-container {
        width: 100%;
        margin-left: 0;
        padding: 24px 16px 0 16px;
    }
}


