:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --background-dark: #0D0E12;
    --card-bg: #17191F;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
    --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.25);
}

.page-about {
    color: var(--text-main); /* Default text color for dark body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

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

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

.page-about__dark-section {
    background-color: var(--background-dark);
}

.page-about__section-title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-main);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

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

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

/* Hero Section */
.page-about__hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: var(--background-dark);
}

.page-about__hero-image-wrap {
    width: 100%;
    height: 675px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-about__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-about__hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 15px;
    text-align: center;
    max-width: 900px;
    background-color: rgba(23, 25, 31, 0.8); /* Card BG with transparency */
    border-radius: 10px;
    margin-top: -150px;
    box-shadow: 0 10px 30px var(--shadow-dark);
    border: 1px solid var(--border-color);
}

.page-about__main-title {
    font-size: clamp(32px, 4vw, 52px);
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px var(--glow-color);
}

.page-about__intro-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-main);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-text {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-about__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px var(--shadow-dark);
}

.page-about__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-dark);
}

.page-about__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-about__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.page-about__btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 0;
    font-size: 16px;
    text-decoration: underline;
}

.page-about__btn-text:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Content Rows */
.page-about__content-row {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    max-width: 1000px;
    margin: 40px auto;
}

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

.page-about__content-text {
    flex: 1;
    min-width: 0;
}

.page-about__content-text p {
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-about__content-text strong {
    color: var(--secondary-color);
}

.page-about__content-image {
    flex: 1;
    min-width: 0;
}

.page-about__content-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-dark);
}

/* Vision Mission Grid */
.page-about__vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 15px var(--shadow-dark);
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.page-about__card:hover {
    transform: translateY(-5px);
}

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

.page-about__card-title a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-about__card-title a:hover {
    text-decoration: underline;
}

/* Products Grid */
.page-about__products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}