/* style/about.css */

/* General Styles */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

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

.page-about-section:nth-child(odd) {
    background-color: #f8f9fa; /* Light background for contrast */
}

.page-about-section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-about-grid {
    display: grid;
    gap: 30px;
    align-items: center;
}

.page-about-grid-3-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Hero Section */
.page-about-hero {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

.page-about-hero-title {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #ffc107; /* Auxiliary color for highlight */
}

.page-about-hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Buttons */
.page-about-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-about-btn-primary {
    background-color: #ffc107;
    color: #000000; /* Dark text on bright button for contrast */
}

.page-about-btn-primary:hover {
    background-color: #e0a800;
    color: #000000;
}

.page-about-btn-secondary {
    background-color: #007bff;
    color: #ffffff;
}

.page-about-btn-secondary:hover {
    background-color: #0056b3;
    color: #ffffff;
}

.page-about-btn-ghost {
    background-color: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
    margin-left: 15px;
}

.page-about-btn-ghost:hover {
    background-color: #ffc107;
    color: #000000;
}

/* Story Section */
.page-about-story .page-about-grid {
    grid-template-columns: 1fr 1fr;
}

.page-about-story .page-about-image-wrapper {
    text-align: center;
}

.page-about-story .page-about-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.page-about-value-item {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-about-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 3px rgba(0, 123, 255, 0.3)); /* Blue shadow for icons */
}

.page-about-value-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

/* Why Choose Section */
.page-about-why-choose .page-about-grid {
    grid-template-columns: 1fr 1fr;
}

.page-about-why-choose .page-about-text-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about-why-choose .page-about-text-content li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-about-why-choose .page-about-text-content li::before {
    content: '✔';
    color: #ffc107; /* Checkmark in auxiliary color */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-about-why-choose .page-about-image-wrapper {
    text-align: center;
}

.page-about-why-choose .page-about-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-about-cta {
    background-color: #007bff; /* Primary color background */
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-about-cta-title {
    font-size: 2.8em;
    color: #ffc107;
    margin-bottom: 20px;
}

.page-about-cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-about-hero-title {
        font-size: 2.5em;
    }

    .page-about-hero-subtitle {
        font-size: 1.2em;
    }

    .page-about-section-title {
        font-size: 2em;
    }

    .page-about-story .page-about-grid,
    .page-about-why-choose .page-about-grid {
        grid-template-columns: 1fr;
    }

    .page-about-story .page-about-image-wrapper,
    .page-about-why-choose .page-about-image-wrapper {
        order: -1; /* Image first on mobile */
        margin-bottom: 30px;
    }

    .page-about-cta-title {
        font-size: 2em;
    }

    .page-about-cta-text {
        font-size: 1em;
    }

    .page-about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-about-btn-ghost {
        margin-left: 0;
        margin-top: 15px;
    }
}