:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --card-bg: #111111;
    --background-color: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
}

body {
    background-color: var(--background-color);
    color: var(--text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.page-about {
    max-width: 100%;
    overflow-x: hidden;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-about__section {
    padding: 60px 0;
    text-align: center;
}

.page-about__section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-about__highlight {
    color: var(--primary-color);
}

.page-about__paragraph {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-main);
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px 20px; /* Small top padding, larger bottom for content */
    background-color: var(--background-color);
}

.page-about__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-about__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-about__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(255, 211, 107, 0.2);
}

.page-about__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-about__hero-content h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.page-about__hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-about__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    white-space: nowrap;
}

.page-about__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.4);
}

.page-about__cta-button--secondary {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.page-about__cta-button--secondary:hover {
    background: var(--primary-color);
    color: var(--background-color);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-about__cta-button--large {
    padding: 18px 50px;
    font-size: 20px;
}

/* Introduction Section */
.page-about__introduction {
    background-color: var(--background-color);
}

.page-about__grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.page-about__card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-about__card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-about__card p {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.7;
}

/* Why Choose Section */
.page-about__why-choose {
    background-color: var(--background-color);
}

.page-about__grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 211, 107, 0.2);
}

.page-about__feature-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 5px;
    object-fit: cover;
}

.page-about__feature-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-about__feature-card p {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.7;
}

/* Responsibility Section */
.page-about__responsibility {
    background-color: var(--background-color);
}

.page-about__responsibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
}

.page-about__responsibility-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-about__responsibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-about__responsibility-list li {
    font-size: 17px;
    color: var(--text-main);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    line-height: 1.7;
}

.page-about__responsibility-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px;
}

/* FAQ Section */
.page-about__faq-section {
    background-color: var(--background-color);
}

.page-about__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

details.page-about__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

details.page-about__faq-item summary.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}

details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
    display: none;
}

details.page-about__faq-item summary.page-about__faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.page-about__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main);
}

.page-about__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
}

details.page-about__faq-item .page-about__faq-answer {
    padding: 0 25px 25px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 8px 8px;
}

details.page-about__faq-item .page-about__faq-answer p {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.7;
    text-align: left;
}

/* Call to Action Section */
.page-about__call-to-action {
    background-color: var(--background-color);
    padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-about__grid-two-columns {
        grid-template-columns: 1fr;
    }
    .page-about__responsibility-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-about__responsibility-content img {
        margin-bottom: 20px;
    }
    .page-about__responsibility-list {
        padding-left: 0;
    }
    .page-about__responsibility-list li {
        padding-left: 25px;
    }
}

@media (max-width: 768px) {
    .page-about__section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .page-about__paragraph {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .page-about__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-about__hero-content h1 {
        font-size: 32px;
    }
    .page-about__hero-content p {
        font-size: 16px;
    }
    .page-about__hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-about__cta-button--large {
        padding: 15px 30px;
        font-size: 18px;
    }
    .page-about__cta-buttons {
        flex-wrap: wrap !important;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-about__card {
        padding: 20px;
    }
    .page-about__card-title {
        font-size: 20px;
    }
    .page-about__feature-card {
        padding: 20px;
    }
    .page-about__feature-title {
        font-size: 19px;
    }
    .page-about__responsibility-content {
        padding: 0 15px;
    }
    .page-about__responsibility-list li {
        font-size: 15px;
    }
    details.page-about__faq-item summary.page-about__faq-question {
        padding: 15px;
    }
    .page-about__faq-qtext {
        font-size: 16px;
    }
    .page-about__faq-toggle {
        font-size: 24px;
        width: 24px;
    }
    details.page-about__faq-item .page-about__faq-answer {
        padding: 0 15px 15px;
    }
    .page-about__faq-answer p {
        font-size: 15px;
    }
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-about__section,
    .page-about__card,
    .page-about__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-about__hero-content h1 {
        font-size: 26px;
    }
    .page-about__hero-content p {
        font-size: 15px;
    }
    .page-about__section-title {
        font-size: 24px;
    }
    .page-about__paragraph {
        font-size: 15px;
    }
    .page-about__cta-button {
        font-size: 15px;
    }
    .page-about__cta-button--large {
        font-size: 16px;
    }
}