body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(74, 71, 128, 1), rgba(45, 45, 45, 1));
    padding: 0 20px
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.page-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(128, 125, 194, .1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(128, 125, 194, .05) 0%, transparent 50%);
    background-size: 100px 100px
}

.page-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(128, 125, 194, .1) 0%, transparent 100%)
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(128, 125, 194, .2);
    border: 1px solid rgba(128, 125, 194, .3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.page-hero-badge-icon {
    font-size: 16px
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2
}

.page-hero-highlight {
    color: var(--bronze);
    position: relative
}

.page-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: .9
}

.page-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap
}

.page-hero-stat {
    text-align: center
}

.page-hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bronze);
    margin-bottom: 5px
}

.page-hero-stat-label {
    font-size: .9rem;
    opacity: .8
}

.about-story-section {
    padding: 80px 0;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto
}

.about-story-header {
    margin-bottom: 30px
}

.about-story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 15px
}

.about-story-subtitle {
    font-size: 1.1rem;
    color: var(--brown-dark-light);
    line-height: 1.6
}

.about-story-text {
    margin-bottom: 40px
}

.about-story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--brown-dark-light);
    margin-bottom: 20px
}

.about-story-text strong {
    color: var(--bronze);
    font-weight: 600
}

.about-story-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.story-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--cream-light);
    border-radius: 10px;
    border-left: 4px solid var(--bronze-light);
}

.story-highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bronze), var(--bronze-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.story-highlight-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.story-highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 5px
}

.story-highlight-content p {
    color: var(--brown-dark-light);
    margin: 0;
    font-size: .95rem
}

.about-story-image {
    position: relative
}

.story-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-strong);
}

.story-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.story-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    color: var(--white);
}

.story-image-badge {
    text-align: center
}

.story-badge-year {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bronze);
    margin-bottom: 5px
}

.story-badge-text {
    font-size: .9rem;
    opacity: .9
}

.about-values-section {
    padding: 80px 0;
    background: var(--cream-light);
}

.about-values-header {
    text-align: center;
    margin-bottom: 60px
}

.about-values-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 15px
}

.about-values-subtitle {
    font-size: 1.1rem;
    color: var(--brown-dark-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-strong);
    transition: all .3s ease;
    border: 1px solid var(--gray-light);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-strong);
}

.value-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bronze), var(--bronze-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px
}

.value-card-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.value-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 15px
}

.value-card-description {
    color: var(--brown-dark-light);
    line-height: 1.6
}

.about-team-section {
    padding: 80px 0;
    background: var(--white);
}

.about-team-header {
    text-align: center;
    margin-bottom: 60px
}

.about-team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 15px
}

.about-team-subtitle {
    font-size: 1.1rem;
    color: var(--brown-dark-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

.about-team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto
}

.team-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 20px
}

.team-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--brown-dark-light);
    margin-bottom: 30px
}

.team-skills {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.team-skill {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--cream-light);
    border-radius: 10px
}

.team-skill-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bronze), var(--bronze-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.team-skill-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.team-skill-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 5px
}

.team-skill-content p {
    color: var(--brown-dark-light);
    margin: 0;
    font-size: .95rem
}

.team-image {
    position: relative
}

.team-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-strong);
}

.team-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.team-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    color: var(--white);
}

.team-badge {
    text-align: center
}

.team-badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bronze);
    margin-bottom: 5px
}

.team-badge-text {
    font-size: .9rem;
    opacity: .9
}

.about-location-section {
    padding: 80px 0;
    background: var(--cream-light);
}

.about-location-header {
    text-align: center;
    margin-bottom: 60px
}

.about-location-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 15px
}

.about-location-subtitle {
    font-size: 1.1rem;
    color: var(--brown-dark-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

.about-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.location-address h3,
.location-coverage h3,
.location-contact h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 15px
}

.address-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--brown-dark-light);
    margin-bottom: 5px
}

.location-coverage p {
    font-size: 1.1rem;
    color: var(--brown-dark-light);
    margin-bottom: 15px
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.coverage-city {
    background: var(--bronze);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: .9rem;
    font-weight: 500
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--bronze);
    flex-shrink: 0
}

.contact-item span,
.contact-item a {
    color: var(--brown-dark-light);
    text-decoration: none;
    font-size: 1rem
}

.contact-item a:hover {
    color: var(--bronze);
}

.location-map {
    position: relative
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-strong);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none
}

.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(74, 71, 128, 1), rgba(45, 45, 45, 1));
    color: var(--white);
    text-align: center
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px
}

.about-cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: .9
}

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

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    border: 2px solid transparent
}

.about-cta-btn.primary {
    background: linear-gradient(135deg, var(--bronze), var(--bronze-light));
    color: var(--white);
}

.about-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(128, 125, 194, .3);
}

.about-cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .3);
}

.about-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
}

.about-cta-btn svg {
    width: 20px;
    height: 20px
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        padding: 40px 0
    }

    .page-hero-stats {
        gap: 20px
    }

    .about-story-grid,
    .about-team-content,
    .about-location-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .value-card,
    .story-highlight,
    .team-skill {
        padding: 20px
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .about-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center
    }
}

@media (max-width: 480px) {

    .page-hero-title,
    .about-story-title,
    .about-values-title,
    .about-team-title,
    .about-location-title,
    .about-cta-title {
        font-size: 2rem
    }

    .story-image-container img,
    .team-image-container img {
        height: 250px
    }

    .coverage-cities {
        justify-content: center
    }
}