/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for general text on dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

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

.page-about__hero {
    background: linear-gradient(135deg, #CC0000 0%, #a30000 100%); /* Darker red gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold text on red background */
    position: relative;
    overflow: hidden;
}

.page-about__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-about__hero .page-about__container {
    position: relative;
    z-index: 1;
}

.page-about__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0; /* Light grey for subtitle */
}

.page-about__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #CC0000; /* Red text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about__button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-about__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__section:last-of-type {
    border-bottom: none;
}

.page-about__heading {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section headings */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-about__description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-about__grid--reverse {
    direction: rtl;
}

.page-about__grid--reverse > * {
    direction: ltr;
}

.page-about__content-block {
    padding: 20px;
}

.page-about__content-block .page-about__heading {
    text-align: left;
    margin-bottom: 20px;
}

.page-about__image-block {
    text-align: center;
}

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

.page-about__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about__list li {
    background-color: rgba(204, 0, 0, 0.2); /* Semi-transparent red background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 5px solid #FFD700; /* Gold border accent */
    font-size: 1.05em;
    color: #f0f0f0;
}

.page-about__list li strong {
    color: #FFD700;
}

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

.page-about__offering-card {
    background-color: #2c2c2c; /* Slightly lighter dark background for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__offering-card:hover {
    transform: translateY(-5px);
    background-color: #3a3a3a;
}

.page-about__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-about__card-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 10px;
}

.page-about__card-text {
    font-size: 1em;
    color: #cccccc;
}

.page-about__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-about__cta-content {
    background-color: #000000; /* Black background for CTA */
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border: 1px solid #CC0000;
}

.page-about__cta .page-about__heading {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-about__cta .page-about__description {
    color: #f0f0f0;
    margin-bottom: 30px;
}

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

.page-about__button--primary {
    background-color: #CC0000; /* Red button */
    color: #FFD700; /* Gold text on red button */
}

.page-about__button--primary:hover {
    background-color: #a30000; /* Darker red on hover */
}

.page-about__button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700; /* Gold border */
    color: #FFD700;
}

.page-about__button--secondary:hover {
    background-color: #FFD700;
    color: #CC0000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__title {
        font-size: 2.8em;
    }
    .page-about__heading {
        font-size: 2em;
    }
    .page-about__grid {
        grid-template-columns: 1fr;
    }
    .page-about__grid--reverse .page-about__image-block {
        order: -1;
    }
    .page-about__content-block .page-about__heading {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__title {
        font-size: 2.2em;
    }
    .page-about__subtitle {
        font-size: 1.2em;
    }
    .page-about__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__heading {
        font-size: 1.8em;
    }
    .page-about__offerings-grid {
        grid-template-columns: 1fr;
    }
    .page-about__cta-content {
        padding: 30px;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-about__title {
        font-size: 1.8em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__heading {
        font-size: 1.5em;
    }
    .page-about__list li {
        padding: 10px 15px;
        font-size: 0.95em;
    }
}