/* Auxiliary Pages Styles */
.page-header {
    background: linear-gradient(135deg, #0F0F0F 0%, #1E1B4B 100%);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06B6D4;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.header-nav a {
    color: #CBD5E1;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: #06B6D4;
    background: rgba(6, 182, 212, 0.1);
}

.page-main {
    min-height: calc(100vh - 200px);
}

.page-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #111111 0%, #1E1B4B 50%, #111111 100%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #F8FAFC;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-hero p {
    font-size: 1.2rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.content-section {
    padding: 6rem 0;
    background: #0F0F0F;
}

.content-grid {
    display: grid;
    gap: 4rem;
}

.content-block {
    background: linear-gradient(135deg, #1E1B4B, #374151);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06B6D4, #00FFFF);
}

.content-block h2 {
    color: #06B6D4;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.content-block p {
    color: #CBD5E1;
    line-height: 1.7;
    font-size: 1.05rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Policy content styles */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: linear-gradient(135deg, #1E1B4B, #374151);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06B6D4, #00FFFF);
}

.policy-section h2 {
    color: #06B6D4;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.policy-section h3 {
    color: #00FFFF;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.3rem;
}

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

.policy-section ul {
    margin-bottom: 1.5rem;
}

.policy-section li {
    color: #CBD5E1;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.policy-section li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    background: #06B6D4;
    border-radius: 50%;
}

.policy-section a {
    color: #06B6D4;
    text-decoration: underline;
}

.policy-section a:hover {
    color: #00FFFF;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(15, 15, 15, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.cookie-table th {
    background: rgba(6, 182, 212, 0.1);
    color: #06B6D4;
    font-weight: 600;
}

.cookie-table td {
    color: #CBD5E1;
}

/* About page specific styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.intro-text h2 {
    color: #06B6D4;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.intro-text p {
    color: #CBD5E1;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.intro-image {
    display: flex;
    justify-content: center;
}

.intro-img,
.story-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
}

.about-values {
    margin-bottom: 6rem;
    text-align: center;
}

.about-values h2 {
    color: #06B6D4;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    background: linear-gradient(135deg, #1E1B4B, #374151);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.4);
}

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    color: #00FFFF;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-item p {
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-story {
    margin-bottom: 4rem;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: #06B6D4;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.story-text p {
    color: #CBD5E1;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.story-image {
    display: flex;
    justify-content: center;
}

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

.placeholder-text {
    font-size: 1.2rem;
    color: #64748B;
    font-style: italic;
    margin-bottom: 2rem;
}

.placeholder-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.placeholder-list li {
    color: #94A3B8;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
    position: relative;
    padding-left: 2rem;
}

.placeholder-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #06B6D4;
    border-radius: 50%;
}

.placeholder-list li:last-child {
    border-bottom: none;
}

/* Mobile responsiveness for auxiliary pages */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-nav {
        gap: 1rem;
    }

    .page-hero {
        padding: 4rem 0 3rem;
    }

    .content-section {
        padding: 4rem 0;
    }

    .content-block {
        padding: 2rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .policy-section {
        padding: 2rem;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }

    .about-intro,
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .intro-text h2,
    .about-values h2,
    .story-text h2 {
        font-size: 1.8rem;
    }

    .placeholder-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header-nav {
        flex-direction: column;
        text-align: center;
    }

    .header-nav a {
        padding: 0.75rem 1rem;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .value-item {
        padding: 2rem;
    }

    .cookie-table {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}