/* Additional Styles for Pages */

/* Wealth Management Page */
.services-overview {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-item h3 {
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark-color);
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.service-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial-quote:before, .testimonial-quote:after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-quote:before {
    top: -1.5rem;
    left: 0;
}

.testimonial-quote:after {
    bottom: -2.5rem;
    right: 0;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: var(--gray-color);
    border-radius: 50%;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-dot:hover {
    transform: scale(1.2);
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Help Page */
.help-search {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 3rem 0;
}

.help-search h2 {
    margin-bottom: 1.5rem;
}

.search-form {
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1.1rem;
}

.search-form input:focus {
    outline: none;
}

.search-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: var(--primary-dark);
}

.help-section {
    padding: 5rem 0;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.help-category {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.help-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.help-category h3 {
    margin-bottom: 1rem;
}

/* Education Page */
.education-resources {
    padding: 5rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.resource-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-10px);
}

.resource-image {
    height: 200px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.resource-item:hover .resource-image img {
    transform: scale(1.1);
}

.resource-content {
    padding: 2rem;
}

.resource-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resource-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.resource-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Auto Loans Page */
.loan-options {
    padding: 5rem 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.option-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.option-item:hover {
    transform: translateY(-10px);
}

.option-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.option-item h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.option-features {
    list-style: none;
    margin: 1.5rem 0;
}

.option-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.option-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.option-item .btn {
    width: 100%;
    margin-top: 1rem;
}

.current-rates {
    padding: 4rem 0;
}

.rates-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.rates-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
    flex-wrap: wrap;
}

.rate-tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.rate-tab.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.rates-content {
    margin-top: 2rem;
}

.rate-panel {
    display: none;
}

.rate-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
}

.rates-table th, .rates-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.rates-table th {
    background-color: var(--light-color);
    font-weight: 600;
}

.rates-disclaimer {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-top: 1.75rem;
    font-style: italic;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.calculator-results {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 8px;
}

.calculator-results h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--light-gray);
}

.result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.result-item.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .calculator-results {
        order: -1;
        margin-bottom: 2rem;
    }
}

/* Security Page */
.security-section {
    padding: 5rem 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.security-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: translateY(-10px);
}

.security-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.security-item h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.security-tips {
    /* background-color: var(--light-color); */
    padding: 4rem 0;
}

.tips-container {
    max-width: 900px;
    margin: 0 auto;
}

.tip-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.tip-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.tip-item h3 i {
    margin-right: 1rem;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 30px;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Savings Page */
.savings-options {
    padding: 5rem 0;
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.savings-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.savings-item:hover {
    transform: translateY(-10px);
}

.savings-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.savings-item h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.savings-features {
    list-style: none;
    margin: 1.5rem 0;
}

.savings-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.savings-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.savings-calculator {
    padding: 4rem 0;
    background-color: var(--light-color);
}

/* Investing Page */
.investment-options {
    padding: 5rem 0;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.investment-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.investment-item:hover {
    transform: translateY(-10px);
}

.investment-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.investment-item h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.investment-features {
    list-style: none;
    margin: 1.5rem 0;
}

.investment-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.investment-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Commercial & Business Pages */
.business-solutions {
    padding: 5rem 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.solution-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-10px);
}

.solution-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.solution-item h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.solution-features {
    list-style: none;
    margin: 1.5rem 0;
}

.solution-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.solution-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.industry-solutions {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.industry-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.industry-item:hover {
    transform: translateY(-10px);
}

.industry-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.industry-item h3 {
    margin-bottom: 1rem;
}

/* About Page */
.our-story {
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-values {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.mission-box, .vision-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-box h2, .vision-box h2 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    text-align: center;
}

.mission-box p, .vision-box p {
    font-size: 1.1rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-item h3 {
    margin-bottom: 1rem;
}

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    height: 250px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--dark-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Corporate Page */
.corporate-services {
    padding: 5rem 0;
}

.services-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-tab {
    padding: 1rem 2rem;
    background-color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 0.5rem 1rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-tab.active {
    background-color: var(--primary-color);
    color: white;
}

.service-panels {
    max-width: 900px;
    margin: 0 auto;
}

.service-panel {
    display: none;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* About Page - Additional Sections */

/* Hero Section */
.hero-section {
    background-color: var(--light-color);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(30, 136, 229, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background-color: white;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--light-gray);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: calc(50% + 30px);
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

.timeline-content {
    width: calc(50% - 50px);
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: 50px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: auto;
    right: calc(50% + 30px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50px;
    margin-right: auto;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-date {
        left: 70px;
        top: -30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-date {
        left: 70px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
    }
}

/* Community Impact Section */
.community-impact {
    padding: 5rem 0;
    background-color: white;
}

.impact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.impact-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.impact-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    list-style: none;
}

.impact-areas li {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.impact-areas li i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.impact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .impact-content {
        grid-template-columns: 1fr;
    }
    
    .impact-image {
        order: -1;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .impact-areas {
        grid-template-columns: 1fr;
    }
}

/* Leadership Section */
.leadership-overview {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.leader-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.leader-item:hover {
    transform: translateY(-10px);
}

.leader-image {
    height: 250px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    padding: 1.5rem;
}

.leader-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.leader-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.leader-bio {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.leader-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.leader-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.leadership-more {
    text-align: center;
}

/* Facts and Figures Section */
.facts-figures {
    padding: 5rem 0;
    background-color: white;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.fact-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fact-item:hover {
    transform: translateY(-10px);
}

.fact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.fact-label {
    color: var(--gray-color);
    font-size: 1rem;
}

/* Awards and Recognition Section */
.awards-recognition {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-10px);
}

.award-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.award-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.award-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Careers Overview Section */
.careers-overview {
    padding: 5rem 0;
    background-color: white;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.careers-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.careers-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--dark-color);
}

.careers-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.careers-text h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.careers-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.careers-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.careers-benefits li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
}

@media (max-width: 992px) {
    .careers-content {
        grid-template-columns: 1fr;
    }
    
    .careers-image {
        order: -1;
    }
}

/* Investor Relations Section */
.investor-overview {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.investor-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.investor-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.stock-info {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.stock-symbol, .stock-exchange, .stock-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.stock-price {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.stock-price .value {
    color: var(--success-color);
}

.stock-price .value i {
    margin-right: 0.5rem;
}

.label {
    font-weight: 600;
}

.investor-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.investor-link {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.investor-link:hover {
    transform: translateY(-5px);
}

.investor-link i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.investor-chart {
    position: relative;
}

.investor-chart img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.chart-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-color);
}

@media (max-width: 992px) {
    .investor-content {
        grid-template-columns: 1fr;
    }
    
    .investor-links {
        grid-template-columns: 1fr;
    }
}

/* Common Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Adjustments for Additional Pages */
@media (max-width: 992px) {
    .story-content, .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        order: -1;
    }
    
    .service-panels {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .contact-container,
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-tab {
        width: calc(50% - 1rem);
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .service-tab {
        width: 100%;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .impact-areas {
        grid-template-columns: 1fr;
    }
}