.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF1E8; /* Text Main */
    background: #140C0C; /* Background */
}

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

.page-about__section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.page-about__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #F3C54D; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-about__sub-title {
    font-size: 24px;
    font-weight: 600;
    color: #FFF1E8;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-about p {
    margin-bottom: 15px;
    color: #FFF1E8;
}

.page-about a {
    color: #F3C54D; /* Gold */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about a:hover {
    color: #FFB04A; /* Lighter gold from button gradient */
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, shared.css handles body padding */
    padding-bottom: 60px;
    overflow: hidden;
    background: #140C0C; /* Ensure background matches */
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.page-about__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Desktop: cover */
    display: block;
    opacity: 0.3; /* Slightly dim the image to make text readable */
}

.page-about__hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 15px;
    position: relative;
    z-index: 2;
}

.page-about__main-title {
    font-size: clamp(32px, 5vw, 48px); /* H1 font-size with clamp */
    font-weight: 700;
    color: #F3C54D; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-about__intro-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #FFF1E8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping for multiple buttons */
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
}

.page-about__cta-buttons--center {
    margin-top: 40px;
}

.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}
}