.about-page {
    min-height: 100vh;
    padding: calc(var(--navigation-offset, 84px) + 24px) 0 48px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

@media (min-width: 768px) {
    .about-page {
        padding: calc(var(--navigation-offset, 96px) + 32px) 0 80px;
    }
}

/* Theme support for about page */
:root.light-theme .about-page {
    background: linear-gradient(135deg, #f5f7fb 0%, #fafbfc 100%);
}

.about-page-header {
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .about-page-header {
        margin-bottom: 60px;
    }
}

.about-page-header .logo-container {
    margin-bottom: 40px;
}

.about-page-header .logo-container img {
    max-width: 150px;
    height: auto;
}

.about-page-header h1 {
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about-page-header h1 {
        margin-bottom: 20px;
    }
}

:root.light-theme .about-page-header h1 {
    color: #1f2937;
}

.about-page-accent {
    color: #e8500a;
}

.about-page-header .subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

:root.light-theme .about-page-header .subtitle {
    color: #6b7280;
}

.about-page-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

@media (min-width: 768px) {
    .about-page-content {
        max-width: 900px;
        padding: 0;
    }
}

.about-page-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    text-align: justify;
}

@media (min-width: 768px) {
    .about-page-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

:root.light-theme .about-page-content p {
    color: #374151;
}

.about-page-content h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 700;
    color: #e8500a;
    margin-top: 24px;
    margin-bottom: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .about-page-content h2 {
        margin-top: 40px;
        margin-bottom: 20px;
    }
}

.about-page-content .highlight-text {
    background: rgba(232, 80, 10, 0.1);
    border-left: 4px solid #e8500a;
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .about-page-content .highlight-text {
        padding: 20px;
        margin: 30px 0;
    }
}

:root.light-theme .about-page-content .highlight-text {
    background: rgba(232, 80, 10, 0.08);
    color: #374151;
    border-left-color: #e8500a;
}

.about-page-content .highlight-text p:last-child {
    margin-bottom: 0;
}

.about-page-signoff {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin-top: 50px;
}

.back-button {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.back-button a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e8500a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button a:hover {
    gap: 12px;
    color: #ff6825;
}

@media (max-width: 768px) {
    .about-page {
        padding: calc(var(--navigation-offset, 84px) + 20px) 0 60px;
    }

    .about-page-header h1 {
        font-size: 32px;
    }

    .about-page-header .logo-container img {
        max-width: 120px;
    }

    .about-page-content p {
        font-size: 15px;
    }

    .about-page-content h2 {
        font-size: 24px;
    }

    .back-button {
        margin-bottom: 40px;
    }

    .about-page-content .highlight-text {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: calc(var(--navigation-offset, 84px) + 16px) 0 40px;
    }

    .about-page-header {
        margin-bottom: 40px;
    }

    .about-page-header h1 {
        font-size: 26px;
    }

    .about-page-header .logo-container img {
        max-width: 100px;
    }

    .about-page-content {
        line-height: 1.7;
    }

    .about-page-content p {
        font-size: 14px;
        text-align: left;
        margin-bottom: 20px;
    }

    .about-page-content h2 {
        font-size: 20px;
        margin-top: 30px;
    }

    .about-page-content .highlight-text {
        padding: 14px;
        margin: 20px 0;
    }

    .back-button {
        margin-bottom: 30px;
    }

    .back-button a {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .about-page {
        padding: calc(var(--navigation-offset, 84px) + 12px) 0 30px;
    }

    .about-page-header h1 {
        font-size: 22px;
    }

    .about-page-content p {
        font-size: 13px;
    }
}
