.about-hero {
    padding: 140px 0 80px;
    text-align: center;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(68, 70, 142, 0.2), var(--noir));
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.decorative-icon {
    position: absolute;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.decorative-icon:hover {
    opacity: 0.3;
}

.decorative-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

/* Icon positions - Hero Section */
.icon-1 { top: 10%; left: 5%; width: 30px; }
.icon-2 { top: 15%; right: 10%; width: 40px; }
.icon-3 { top: 40%; left: 15%; width: 25px; }
.icon-4 { bottom: 20%; right: 15%; width: 35px; }
.icon-5 { bottom: 30%; left: 8%; width: 28px; }
.icon-6 { top: 25%; right: 25%; width: 32px; }
.icon-7 { bottom: 15%; left: 30%; width: 24px; }
.icon-8 { top: 35%; left: 40%; width: 22px; }
.icon-9 { top: 20%; left: 25%; width: 20px; }
.icon-10 { bottom: 35%; right: 35%; width: 26px; }
.icon-11 { top: 45%; right: 8%; width: 22px; }
.icon-12 { bottom: 25%; left: 45%; width: 24px; }
.icon-13 { top: 30%; right: 45%; width: 28px; }
.icon-14 { bottom: 10%; right: 25%; width: 20px; }
.icon-15 { top: 5%; left: 35%; width: 18px; }
.icon-16 { bottom: 5%; right: 40%; width: 22px; }
.icon-17 { top: 60%; left: 20%; width: 26px; }
.icon-18 { bottom: 40%; right: 18%; width: 24px; }
.icon-19 { top: 8%; right: 30%; width: 20px; }
.icon-20 { bottom: 8%; left: 38%; width: 28px; }
.icon-21 { top: 55%; right: 42%; width: 22px; }
.icon-22 { top: 28%; left: 48%; width: 19px; }
.icon-23 { bottom: 45%; left: 25%; width: 21px; }
.icon-24 { top: 18%; right: 15%; width: 23px; }

.about-story {
    padding: 80px 0;
    position: relative;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-image img {
    width: 100%;
    border-radius: var(--card-radius);
}

.story-content {
    padding: 20px;
}

.story-content h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story-float-1 { top: -20px; left: 5%; width: 25px; transform: rotate(-15deg); }
.story-float-2 { bottom: 40px; right: 8%; width: 30px; transform: rotate(20deg); }
.story-float-3 { top: 30%; left: 12%; width: 20px; }
.story-float-4 { top: 45%; right: 5%; width: 22px; transform: rotate(25deg); }
.story-float-5 { bottom: 25%; left: 45%; width: 26px; transform: rotate(-12deg); }
.story-float-6 { top: 15%; right: 35%; width: 20px; }

.about-values {
    background-color: var(--dark-purple);
    padding: 80px 0;
    position: relative;
}

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

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--purple);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.value-icon img {
    width: 100%;
    height: 100%;
}

.values-float-1 { top: 40px; right: 15%; width: 35px; transform: rotate(-25deg); }
.values-float-2 { bottom: 60px; left: 10%; width: 28px; }
.values-float-3 { top: 50%; right: 8%; width: 22px; transform: rotate(15deg); }
.values-float-4 { top: 25%; left: 20%; width: 24px; transform: rotate(18deg); }
.values-float-5 { bottom: 15%; right: 25%; width: 30px; transform: rotate(-8deg); }
.values-float-6 { top: 60%; left: 35%; width: 22px; transform: rotate(15deg); }

.about-team {
    padding: 80px 0;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    position: relative;
    padding: 1rem;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    filter: sepia(0.6) brightness(0.9);
    transition: filter 0.4s ease;
}

.team-member img:hover {
    filter: sepia(0) brightness(1);
}

.team-member .decorative-svg {
    position: absolute;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.team-member .decorative-svg img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
    opacity: 0.8;
}

.team-member .decorative-svg.bottom-right {
    bottom: 65px;
    right: 50px;
}

.team-member .decorative-svg.top-left {
    top: 20px;
    left: 50px;
}

.team-member h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.team-member .title {
    color: var(--mushroom);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.team-float-1 { top: 20px; left: 12%; width: 32px; transform: rotate(10deg); }
.team-float-2 { bottom: 40px; right: 15%; width: 25px; transform: rotate(-20deg); }
.team-float-3 { top: 40%; right: 20%; width: 20px; }
.team-float-4 { top: 35%; left: 28%; width: 26px; transform: rotate(-15deg); }
.team-float-5 { bottom: 20%; right: 32%; width: 24px; transform: rotate(20deg); }
.team-float-6 { top: 15%; right: 40%; width: 20px; }

/* Global decorative elements */
.floating-icon {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.floating-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.floating-icon.gold img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(38%) saturate(334%) hue-rotate(358deg) brightness(90%) contrast(90%);
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.floating-icon {
    animation: float 8s ease-in-out infinite;
}

.floating-icon:nth-child(odd) {
    animation-duration: 6s;
}

.floating-icon:nth-child(3n) {
    animation-duration: 10s;
}

.floating-icon:nth-child(4n) {
    animation-duration: 7s;
}

.floating-icon:nth-child(5n) {
    animation-duration: 9s;
}

/* Enhanced Mobile Responsiveness for About Page */

/* Tablet improvements */
@media screen and (min-width: 576px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px) {
    .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .story-content {
        padding: 40px;
    }
}
