/* style/about.css */

.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-about__hero {
    background-color: #1A2E44; /* Main color */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-about__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.page-about__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-about__highlight {
    color: #FFD700; /* Auxiliary color */
    font-weight: bold;
}

.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-about__btn--primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #1A2E44; /* Main color for contrast */
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-about__btn--secondary {
    background-color: #1A2E44; /* Main color */
    color: #FFD700; /* Auxiliary color for contrast */
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #0d1e30;
    transform: translateY(-2px);
}

.page-about__section {
    padding: 80px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-about__section:nth-of-type(even) {
    background-color: #f0f4f7; /* Lighter variant of main color */
}

.page-about__section-title {
    font-size: 2.5em;
    color: #1A2E44; /* Main color */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Auxiliary color */
    border-radius: 2px;
}

.page-about__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-about__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-about__text-content {
    flex: 1;
}

.page-about__text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-about__image-container {
    flex: 1;
    text-align: center;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.page-about__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-about__feature-item h3 {
    font-size: 1.5em;
    color: #1A2E44; /* Main color */
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-about__feature-item p {
    color: #666;
    font-size: 1em;
}

.page-about__feature-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.page-about__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed #ddd;
}

.page-about__cta-bottom p {
    font-size: 1.2em;
    color: #1A2E44; /* Main color */
    margin-bottom: 30px;
    font-weight: bold;
}

.page-about__value-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-about__value-list li {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.page-about__value-list li strong {
    color: #1A2E44; /* Main color */
}

.page-about__value-list li::before {
    content: '✔';
    color: #FFD700; /* Auxiliary color */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__content-grid {
        flex-direction: column;
        gap: 30px;
    }
    .page-about__content-grid--reverse {
        flex-direction: column;
    }
    .page-about__image-container {
        order: -1; /* Image appears before text on small screens for reverse grid */
    }
    .page-about__feature-item h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-about__features-grid {
        grid-template-columns: 1fr;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__cta-bottom p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-about__hero {
        padding: 60px 0;
    }
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__hero-description {
        font-size: 0.95em;
    }
    .page-about__container {
        padding: 0 15px;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    .page-about__feature-item {
        padding: 25px;
    }
    .page-about__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-about__cta-bottom {
        margin-top: 40px;
        padding-top: 30px;
    }
}