/* Auxiliary Pages Styles */

/* Policy Section Styles */
.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E2E8F0;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0A1628;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 1rem;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    background: #0A1628;
    padding: 1.5rem 0;
    color: white;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header .logo-brand .brand-name {
    color: white;
}

.back-link {
    color: #00E5A0;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #00E5A0;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.back-link:hover {
    background: #00E5A0;
    color: white;
}

/* Page Main Content */
.page-main {
    padding: 4rem 0 6rem;
    min-height: 60vh;
}

.page-main h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #0A1628;
}

/* About Page Styles */
.about-hero,
.about-startup-focus,
.about-security,
.about-technology {
    margin-bottom: 6rem;
    padding: 0 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2,
.about-text-center h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #0A1628;
    border-bottom: 3px solid #00E5A0;
    padding-bottom: 0.5rem;
}

.about-text p,
.about-text-center p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual svg {
    max-width: 100%;
    height: auto;
}

.photo-placeholder {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.photo-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Policy Pages Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 2rem;
    text-align: center;
}

.content-placeholder {
    background: #F8FAFC;
    border: 2px dashed #CBD5E0;
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.content-placeholder p {
    font-size: 1.1rem;
    color: #64748B;
    margin: 0;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero,
    .about-startup-focus,
    .about-security,
    .about-technology {
        margin-bottom: 4rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .page-main {
        padding: 2rem 0 4rem;
    }
    
    .page-main h1 {
        font-size: 2rem;
    }
    
    .about-text h2,
    .about-text-center h2 {
        font-size: 1.5rem;
    }
    
    .about-text p,
    .about-text-center p {
        font-size: 1rem;
    }
    
    .content-placeholder {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .back-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .page-main h1 {
        font-size: 1.8rem;
    }
    
    .about-hero,
    .about-startup-focus,
    .about-security,
    .about-technology {
        margin-bottom: 3rem;
    }
}