/* style/about-us.css */

:root {
    --primary-color: #0A246A;
    --secondary-color: #FFD700;
    --accent-color: #DC3545; /* Red for emphasis */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7f6;
    --bg-dark: #071a47;
    --border-color: #e0e0e0;
}

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

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

.page-about-us h1, .page-about-us h2, .page-about-us h3 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-about-us h1 {
    font-size: 2.8em;
    color: var(--text-light);
}

.page-about-us h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-about-us h3 {
    font-size: 1.6em;
}

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

.page-about-us ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-about-us ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1em;
}

.page-about-us ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.page-about-us .cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-about-us .cta-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-about-us .cta-button.primary:hover {
    background: #071a47;
}

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

.page-about-us .cta-button.secondary:hover {
    background: #c82333;
}

.page-about-us .text-center {
    text-align: center;
    margin-top: 30px;
}

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

.page-about-us .about-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.page-about-us .about-hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-about-us .about-hero-content {
    padding: 0 20px;
}

.page-about-us .about-hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Intro Section */
.page-about-us .intro-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.page-about-us .feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about-us .feature-cards .card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-us .feature-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-about-us .card-icon {
    width: 150px; /* Increased size */
    height: 150px; /* Increased size */
    margin-bottom: 20px;
    object-fit: contain;
}

.page-about-us .feature-cards .card h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-about-us .feature-cards .card p {
    font-size: 1em;
    color: #555555;
}

/* Services Section */
.page-about-us .services-section {
    padding: 60px 0;
    background: #ffffff;
}

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

.page-about-us .service-list li {
    background: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    list-style: none;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-us .service-list li::before {
    content: none; /* Remove default list style */
}

.page-about-us .service-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-about-us .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-about-us .service-list h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-about-us .read-more-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-about-us .read-more-link:hover {
    color: var(--primary-color);
}

/* Security Section */
.page-about-us .security-section {
    padding: 60px 0;
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.page-about-us .security-section h2 {
    color: var(--secondary-color);
}

.page-about-us .security-section p {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-about-us .security-section ul {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-about-us .security-section ul li {
    color: #e0e0e0;
}

.page-about-us .security-section ul li::before {
    color: var(--secondary-color);
}

.page-about-us .security-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    object-fit: cover;
}

/* Support Section */
.page-about-us .support-section {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.page-about-us .contact-channels {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-about-us .contact-channels li {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-about-us .contact-channels li::before {
    content: none;
}

.page-about-us .contact-channels li:hover {
    transform: translateY(-5px);
}

/* Promotions Section */
.page-about-us .promotions-section {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

/* Commitment Section */
.page-about-us .commitment-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #071a47 100%);
    color: var(--text-light);
    text-align: center;
}

.page-about-us .commitment-section h2 {
    color: var(--secondary-color);
}

.page-about-us .commitment-section p {
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.2em;
}

/* FAQ Section */
.page-about-us .faq-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.page-about-us .faq-item {
    margin-bottom: 15px;
}

.page-about-us .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-about-us .faq-question:hover {
    background: #f5f5f5;
    border-color: var(--secondary-color);
}

.page-about-us .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

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

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

.page-about-us .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.page-about-us .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
    border-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about-us h1 {
        font-size: 2.2em;
    }
    .page-about-us h2 {
        font-size: 1.8em;
    }
    .page-about-us h3 {
        font-size: 1.4em;
    }
    .page-about-us .about-hero-image {
        max-width: 600px;
    }
    .page-about-us .feature-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-about-us .service-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-about-us .faq-question h3 {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-about-us .about-hero-section {
        padding: 60px 0;
    }
    .page-about-us .about-hero-content p {
        font-size: 1.1em;
    }
    .page-about-us .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about-us h1 {
        font-size: 1.8em;
    }
    .page-about-us h2 {
        font-size: 1.6em;
    }
    .page-about-us .feature-cards {
        grid-template-columns: 1fr;
    }
    .page-about-us .service-list {
        grid-template-columns: 1fr;
    }
    .page-about-us .contact-channels {
        flex-direction: column;
        align-items: center;
    }
    .page-about-us .security-section ul {
        padding: 0 15px;
    }
    .page-about-us .faq-question {
        padding: 15px 20px;
    }
    .page-about-us .faq-answer {
        padding: 0 20px;
    }
    .page-about-us .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-about-us h1 {
        font-size: 1.6em;
    }
    .page-about-us h2 {
        font-size: 1.4em;
    }
    .page-about-us p, .page-about-us ul li {
        font-size: 0.95em;
    }
    .page-about-us .about-hero-image {
        max-width: 90%;
    }
    .page-about-us .card-icon {
        width: 100px;
        height: 100px;
    }
}