/* Subraps About Us Page CSS */

/* About Hero Section */
.about-hero {
    padding-top: 5rem;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, var(--color-navy) 0%, #020a1a 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .about-hero {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .about-hero {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 145, 68, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .about-hero::before {
        width: 450px;
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .about-hero::before {
        width: 600px;
        height: 600px;
    }
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(251, 215, 113, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .about-hero::after {
        width: 375px;
        height: 375px;
    }
}

@media (min-width: 1024px) {
    .about-hero::after {
        width: 500px;
        height: 500px;
    }
}

.about-hero-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .about-hero-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.about-hero-content {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-title {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .about-hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .about-hero-title {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-hero-title {
        font-size: 3.5rem;
    }
}

.about-hero-accent {
    color: var(--color-secondary);
    position: relative;
}

.about-hero-accent::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    opacity: 0.4;
    z-index: -1;
}

.about-hero-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .about-hero-subtitle {
        font-size: 1rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .about-hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Our Story Section */
.about-story-section {
    padding: 2.5rem 1rem;
    background-color: #ffffff;
}

@media (min-width: 640px) {
    .about-story-section {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-story-section {
        padding: 2.5rem 2.5rem;
    }
}

.about-story-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .about-story-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.about-story-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-story-grid {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 6rem;
    }
}

.about-story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-story-content {
        gap: 2rem;
    }
}

.about-section-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.1) 0%, rgba(251, 215, 113, 0.1) 100%);
    border: 1px solid rgba(0, 145, 68, 0.2);
    border-radius: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .about-section-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
}

.about-section-title {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .about-section-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .about-section-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-section-title {
        font-size: 2.5rem;
    }
}

.about-story-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .about-story-text {
        gap: 1.5rem;
    }
}

.about-story-text p {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .about-story-text p {
        font-size: 1rem;
    }
}

.about-story-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .about-story-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    .about-story-visual {
        gap: 1.5rem;
    }
}

.about-story-card {
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    border: 2px solid rgba(0, 145, 68, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .about-story-card {
        padding: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .about-story-card {
        padding: 2rem;
    }
}

.about-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.about-story-card:hover::before {
    transform: scaleX(1);
}

.about-story-card-1 {
    grid-column: 1 / -1;
}

.about-story-card-2 {
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.05) 0%, var(--color-light) 100%);
}

.about-story-card-3 {
    background: linear-gradient(135deg, rgba(251, 215, 113, 0.05) 0%, var(--color-light) 100%);
}

.story-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .story-card-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .story-card-icon {
        font-size: 3rem;
    }
}

.story-card-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-navy);
    font-family: var(--font-heading);
}

@media (min-width: 640px) {
    .story-card-text {
        font-size: 0.9375rem;
    }
}

@media (min-width: 1024px) {
    .story-card-text {
        font-size: 1rem;
    }
}

/* Founders Section */
.about-founders-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-light) 0%, rgba(0, 145, 68, 0.03) 100%);
}

.about-founders-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.about-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .about-section-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .about-section-header {
        margin-bottom: 4rem;
    }
}

.about-section-subtitle {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-top: 0.75rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .about-section-subtitle {
        font-size: 1rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .about-section-subtitle {
        font-size: 1.125rem;
    }
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.founder-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-light) 100%);
    border: 2px solid rgba(0, 145, 68, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.founder-card:hover::before {
    transform: scaleX(1);
}

.founder-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(0, 145, 68, 0.3);
    position: relative;
}

.founder-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid rgba(0, 145, 68, 0.2);
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.founder-avatar-placeholder {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
}

.founder-name {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-bio {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    text-align: left;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    padding: 0.375rem 0.875rem;
    background: rgba(0, 145, 68, 0.1);
    border: 1px solid rgba(0, 145, 68, 0.2);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Mission & Vision Section */
.about-mission-section {
    padding: 2.5rem 1rem;
    background-color: #ffffff;
}

@media (min-width: 640px) {
    .about-mission-section {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-mission-section {
        padding: 2.5rem 2.5rem;
    }
}

.about-mission-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .about-mission-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .mission-vision-grid {
        gap: 3rem;
    }
}

.mission-card {
    background: linear-gradient(135deg, var(--color-navy) 0%, #020a1a 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
    .mission-card {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .mission-card {
        padding: 3rem;
    }
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 145, 68, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.mission-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .mission-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .mission-icon {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

.mission-icon-primary {
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.3) 0%, rgba(0, 145, 68, 0.1) 100%);
    border: 2px solid rgba(0, 145, 68, 0.3);
}

.mission-icon-secondary {
    background: linear-gradient(135deg, rgba(251, 215, 113, 0.3) 0%, rgba(251, 215, 113, 0.1) 100%);
    border: 2px solid rgba(251, 215, 113, 0.3);
}

.mission-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .mission-title {
        font-size: 1.625rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .mission-title {
        font-size: 1.75rem;
    }
}

.mission-text {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .mission-text {
        font-size: 1rem;
    }
}

/* Values Section */
.about-values-section {
    padding: 2.5rem 1rem;
    background: linear-gradient(135deg, var(--color-light) 0%, rgba(251, 215, 113, 0.05) 100%);
}

@media (min-width: 640px) {
    .about-values-section {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-values-section {
        padding: 2.5rem 2.5rem;
    }
}

.about-values-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .about-values-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 768px) {
    .values-grid {
        gap: 2rem;
    }
}

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-light) 100%);
    border: 2px solid rgba(0, 145, 68, 0.1);
    border-radius: 1.5rem;
    padding: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .value-card {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .value-card {
        padding: 2.5rem;
    }
}

.value-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.value-card:hover::before {
    transform: scaleY(1);
}

.value-number {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.75rem;
    opacity: 0.3;
}

@media (min-width: 640px) {
    .value-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .value-number {
        font-size: 3rem;
    }
}

.value-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .value-title {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .value-title {
        font-size: 1.5rem;
    }
}

.value-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .value-text {
        font-size: 0.9375rem;
    }
}

/* Stats Section */
.about-stats-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--color-navy) 0%, #020a1a 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .about-stats-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .about-stats-section {
        padding: 5rem 0;
    }
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 145, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .about-stats-section::before {
        width: 450px;
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .about-stats-section::before {
        width: 600px;
        height: 600px;
    }
}

.about-stats-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .about-stats-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .stats-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        gap: 3rem;
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
    .stat-card {
        padding: 1.75rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .stat-card {
        padding: 2rem;
    }
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
    box-shadow: 0 20px 25px -5px rgba(0, 145, 68, 0.2);
}

.stat-number {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.9375rem;
    }
}

@media (min-width: 1024px) {
    .stat-label {
        font-size: 1rem;
    }
}

/* Why Choose Us Section */
.about-why-section {
    padding: 2.5rem 1rem;
    background-color: #ffffff;
}

@media (min-width: 640px) {
    .about-why-section {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-why-section {
        padding: 2.5rem 2.5rem;
    }
}

.about-why-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .about-why-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 768px) {
    .why-grid {
        gap: 2rem;
    }
}

.why-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-light) 100%);
    border: 2px solid rgba(0, 145, 68, 0.1);
    border-radius: 1.5rem;
    padding: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .why-card {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .why-card {
        padding: 2.5rem;
    }
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 145, 68, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.why-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .why-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .why-icon {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon-1 {
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.1) 0%, rgba(0, 145, 68, 0.05) 100%);
    border: 2px solid rgba(0, 145, 68, 0.2);
}

.why-icon-2 {
    background: linear-gradient(135deg, rgba(251, 215, 113, 0.2) 0%, rgba(251, 215, 113, 0.1) 100%);
    border: 2px solid rgba(251, 215, 113, 0.3);
}

.why-icon-3 {
    background: linear-gradient(135deg, rgba(4, 30, 66, 0.1) 0%, rgba(4, 30, 66, 0.05) 100%);
    border: 2px solid rgba(4, 30, 66, 0.2);
}

.why-icon-4 {
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.1) 0%, rgba(251, 215, 113, 0.1) 100%);
    border: 2px solid rgba(0, 145, 68, 0.2);
}

.why-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .why-title {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .why-title {
        font-size: 1.5rem;
    }
}

.why-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .why-text {
        font-size: 0.9375rem;
    }
}

/* About CTA Section */
.about-cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #007a3a 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .about-cta-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .about-cta-section {
        padding: 5rem 0;
    }
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .about-cta-section::before {
        width: 450px;
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .about-cta-section::before {
        width: 600px;
        height: 600px;
    }
}

.about-cta-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .about-cta-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.about-cta-content {
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .about-cta-title {
        font-size: 1.875rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .about-cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .about-cta-title {
        font-size: 2.5rem;
    }
}

.about-cta-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.75;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .about-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2.25rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .about-cta-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .about-cta-buttons {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: 100%;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 640px) {
    .about-cta-btn {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
        width: auto;
        min-width: 160px;
    }
}

@media (min-width: 1024px) {
    .about-cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

.about-cta-btn-primary {
    background: #ffffff;
    color: var(--color-primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.about-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    background: var(--color-secondary);
    color: var(--color-navy);
}

.about-cta-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.about-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

