/* style/about.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #222222;
    --border-color: #e0e0e0;
}

.page-about {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

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

.page-about-section:nth-of-type(even) {
    background-color: var(--bg-light);
}

.page-about h1,
.page-about h2,
.page-about h3,
.page-about h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about h1 {
    font-size: 3em;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about h2 {
    font-size: 2.5em;
    margin-top: 40px;
    color: var(--secondary-color);
}

.page-about h3 {
    font-size: 2em;
    color: var(--primary-color);
}

.page-about p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-about ul {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 800px;
}

.page-about ul li {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid var(--primary-color);
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 1.05em;
    color: var(--text-dark);
}

.page-about-cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    border: 2px solid var(--primary-color);
}

.page-about-cta-button:hover {
    background-color: #e6c200; /* Darken primary color */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-about-cta-button.primary-cta {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

.page-about-cta-button.primary-cta:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-about-cta-button.secondary-cta {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
}

.page-about-cta-button.secondary-cta:hover {
    background-color: #7a0000; /* Darken secondary color */
    border-color: #7a0000;
}

/* Hero Section */
.page-about-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 80px 0;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.page-about-hero-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-about-hero h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 3.5em;
    line-height: 1.2;
}

.page-about-hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* General Image Styling */
.page-about-image-full {
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-about-mt-40 { margin-top: 40px; }

/* Values Grid */
.page-about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about-value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-about-value-item h4 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-about-value-item p {
    font-size: 1em;
    color: var(--text-dark);
}

/* Product Grid */
.page-about-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about-product-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-about-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-about-product-item h3 {
    color: var(--secondary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-about-product-item p {
    font-size: 1em;
    color: var(--text-dark);
    flex-grow: 1;
}

.page-about-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-about-product-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-about-product-link:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.page-about-readmore-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-about-readmore-button:hover {
    background-color: #e6c200;
}

/* FAQ Section */
.page-about-faq-list {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-about-faq-list .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.page-about-faq-list .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-about-faq-list .faq-question:hover {
    background: var(--bg-light);
}

.page-about-faq-list .faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--text-dark);
}

.page-about-faq-list .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-about-faq-list .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.page-about-faq-list .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #fdfdfd;
    padding: 0 25px;
}

.page-about-faq-list .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 25px 25px;
    border-top: 1px solid var(--border-color);
}

.page-about-faq-list .faq-answer p {
    margin: 0;
    font-size: 1.05em;
    color: var(--text-dark);
    line-height: 1.7;
}

.page-about-faq-list .faq-answer p a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-about-faq-list .faq-answer p a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

/* Bottom CTA */
.page-about-cta-bottom {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
}

.page-about-cta-bottom h2 {
    color: var(--text-light);
    font-size: 3em;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-about-cta-bottom p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about h1 {
        font-size: 3em;
    }
    .page-about h2 {
        font-size: 2em;
    }
    .page-about h3 {
        font-size: 1.7em;
    }
    .page-about-hero-image {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .page-about-section {
        padding: 40px 0;
    }
    .page-about-hero {
        padding: 60px 0;
    }
    .page-about-hero h1 {
        font-size: 2.5em;
    }
    .page-about-hero p {
        font-size: 1em;
    }
    .page-about-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about-values-grid,
    .page-about-product-grid {
        grid-template-columns: 1fr;
    }
    .page-about-value-item,
    .page-about-product-item {
        padding: 20px;
    }
    .page-about-faq-list .faq-question {
        padding: 15px 20px;
    }
    .page-about-faq-list .faq-question h3 {
        font-size: 1.1em;
    }
    .page-about-faq-list .faq-toggle {
        font-size: 1.5em;
    }
    .page-about-faq-list .faq-answer {
        padding: 0 20px;
    }
    .page-about-faq-list .faq-item.active .faq-answer {
        padding: 15px 20px 20px;
    }
    .page-about-cta-bottom h2 {
        font-size: 2.2em;
    }
    .page-about-cta-bottom p {
        font-size: 1.05em;
    }
    .page-about-hero-image {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .page-about-container {
        padding: 0 15px;
    }
    .page-about h1 {
        font-size: 2em;
    }
    .page-about h2 {
        font-size: 1.7em;
    }
    .page-about h3 {
        font-size: 1.4em;
    }
    .page-about-cta-button {
        display: block;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
    .page-about-hero-image {
        max-height: 200px;
    }
}