/* Additional styles for auxiliary pages */

.page-header {
    background: linear-gradient(135deg, #1a1b3a 0%, #0f1123 100%);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(125, 211, 192, 0.2);
}

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

.page-header .logo-section {
    margin-bottom: 0;
}

.page-header .brand-name {
    font-size: 2rem;
}

.page-nav a {
    color: #7dd3c0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-nav a:hover {
    color: #ff6b7a;
}

.page-main {
    min-height: 60vh;
    padding: 4rem 0;
    background-color: #0f1123;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #7dd3c0 0%, #ff6b7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-section {
    margin-bottom: 3rem;
    background: rgba(26, 27, 58, 0.3);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #7dd3c0;
}

.page-section h2 {
    color: #7dd3c0;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.page-section p {
    color: #b8bcc8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-placeholder {
    background: rgba(255, 107, 122, 0.1);
    border: 2px dashed rgba(255, 107, 122, 0.3);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
}

.content-placeholder p {
    color: #ff6b7a;
    font-style: italic;
    font-size: 1.2rem;
}

.content-placeholder p:first-child {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.content-placeholder p:last-child {
    margin-bottom: 0;
    color: #b8bcc8;
    font-size: 1rem;
    font-style: normal;
}

/* About Us Page Specific Styles */
.about-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    text-align: left;
}

.about-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(125, 211, 192, 0.2);
}

.about-illustration {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.about-svg {
    background: rgba(26, 27, 58, 0.3);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(125, 211, 192, 0.2);
}

/* Center align all content in About Us */
.page-main .container {
    text-align: center;
}

.page-section {
    text-align: center;
}

.page-section h2 {
    text-align: center;
}

.page-section p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .about-content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        text-align: center;
    }
    
    .page-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-section {
        padding: 2rem;
    }
    
    .content-placeholder {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-section {
        padding: 1.5rem;
    }
    
    .page-section h2 {
        font-size: 1.5rem;
    }
    
    .content-placeholder {
        padding: 1.5rem;
    }
    
    .content-placeholder p:first-child {
        font-size: 1.2rem;
    }
}