/* Static Pages Styles (About, Privacy, Contact, Terms) */

.page-hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--primary-darker);
    padding-top: 100px;
}

.page-hero-content {
    text-align: center;
    padding: 40px;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Page Content */
.page-content-section {
    background: var(--primary-dark);
    padding: 80px 40px;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Intro with Profile */
.page-intro {
    text-align: center;
    margin-bottom: 60px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
    border: 4px solid var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 2;
}

/* Page Sections */
.page-section {
    margin-bottom: 50px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.page-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.page-section p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 2;
    margin-bottom: 20px;
}

.page-section p:last-child {
    margin-bottom: 0;
}

.page-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.page-section li {
    color: var(--text-light);
    font-size: 14px;
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-section li:last-child {
    border-bottom: none;
}

.page-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.page-section li strong {
    color: var(--text-white);
}

/* Blockquote */
blockquote {
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid var(--accent-cyan);
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

/* Contact Links */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    color: var(--text-light);
    font-size: 14px;
}

/* Page CTA */
.page-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.page-cta p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 20px;
}

/* Footer Legal Links */
.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-cyan);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        min-height: 30vh;
        padding-top: 80px;
    }

    .page-content-section {
        padding: 60px 20px;
    }

    .page-section {
        padding: 30px 20px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}
