.about-hero {
    min-height: 120vh;
    display: flex;
    position: relative;
    overflow: hidden;
    padding-top: 170px;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hexagon-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, transparent 48%, rgba(255, 184, 0, 0.05) 49%, rgba(255, 184, 0, 0.05) 51%, transparent 52%),
        linear-gradient(-30deg, transparent 48%, rgba(255, 184, 0, 0.05) 49%, rgba(255, 184, 0, 0.05) 51%, transparent 52%);
    background-size: 100px 60px;
    animation: hexagonMove 20s linear infinite;
}

@keyframes hexagonMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-60px); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--honey-primary);
    margin-bottom: 30px;
}

.hero-label i {
    font-size: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight {
    color: var(--honey-primary);
    text-shadow: 0 0 40px rgba(255, 184, 0, 0.5);
    -webkit-text-fill-color: var(--honey-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: var(--honey-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 184, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--honey-primary), var(--honey-glow));
    border-radius: 12px;
    font-size: 24px;
    color: var(--cyber-black);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.3);
}

.stat-info {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--honey-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 184, 0, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--honey-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

.timeline-section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--honey-primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
    transparent 0%,
    var(--honey-primary) 10%,
    var(--honey-primary) 90%,
    transparent 100%
    );
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 0;
}

.timeline-item-reverse .timeline-content {
    grid-column: 1;
}

.timeline-item-reverse .timeline-marker {
    grid-column: 2;
    justify-self: center;
}

.timeline-marker {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    justify-self: center;
}

.marker-inner {
    width: 24px;
    height: 24px;
    background: var(--honey-primary);
    border: 4px solid var(--cyber-black);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.2);
    position: relative;
    z-index: 2;
}

.marker-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.3), transparent);
    border-radius: 50%;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
}

.timeline-content {
    grid-column: 3;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 184, 0, 0.05);
    border-color: var(--honey-primary);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 184, 0, 0.2);
}

.timeline-item-reverse .timeline-content:hover {
    transform: translateX(-10px);
}

.timeline-year {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--honey-primary), var(--honey-glow));
    color: var(--cyber-black);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    margin-bottom: 20px;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 12px;
    font-size: 20px;
    color: var(--honey-primary);
    margin-bottom: 20px;
}

.timeline-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.timeline-quote {
    padding: 24px;
    background: rgba(255, 184, 0, 0.05);
    border-left: 4px solid var(--honey-primary);
    border-radius: 8px;
    margin-top: 24px;
}

.timeline-quote i {
    font-size: 20px;
    color: var(--honey-primary);
    margin-bottom: 12px;
}

.timeline-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.timeline-quote span {
    font-size: 0.9rem;
    color: var(--honey-primary);
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-badge i {
    color: var(--honey-primary);
}

.current-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.current-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 184, 0, 0.08);
    border-radius: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.current-stat i {
    font-size: 20px;
    color: var(--honey-primary);
}

.values-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cyber-black) 0%, var(--cyber-dark) 100%);
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 184, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 184, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    background: rgba(255, 184, 0, 0.05);
    border-color: var(--honey-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.2);
}

.value-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-icon i {
    font-size: 36px;
    color: var(--honey-primary);
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.3), transparent);
    border-radius: 50%;
    filter: blur(20px);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.philosophy-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.philosophy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cyber-dark) 0%, var(--cyber-black) 100%);
    z-index: 0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.philosophy-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-weight: 500;
}

.philosophy-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.philosophy-text strong {
    color: var(--honey-primary);
    font-weight: 600;
}

.philosophy-highlight {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 184, 0, 0.08);
    border-left: 4px solid var(--honey-primary);
    border-radius: 12px;
    margin-top: 30px;
}

.philosophy-highlight i {
    font-size: 28px;
    color: var(--honey-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.philosophy-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.philosophy-image {
    position: relative;
    width: 100%;
    height: 70%;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--honey-primary);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image-frame:hover .frame-border {
    opacity: 1;
}

.image-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.image-caption i {
    color: var(--honey-primary);
}

.location-section {
    padding: 120px 0;
    background: var(--cyber-black);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.location-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.location-card:hover {
    background: rgba(255, 184, 0, 0.05);
    border-color: var(--honey-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.2);
}

.location-card-highlight {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 184, 0, 0.05) 100%);
    border: 2px solid var(--honey-primary);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.location-header i {
    font-size: 28px;
    color: var(--honey-primary);
}

.location-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.location-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: rgba(255, 184, 0, 0.08);
    transform: translateX(5px);
}

.location-item i {
    font-size: 20px;
    color: var(--honey-primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.location-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.location-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.online-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.online-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
}

.online-feature i {
    font-size: 24px;
    color: var(--honey-primary);
}

.online-feature span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--honey-primary), var(--honey-glow));
    color: var(--cyber-black);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 184, 0, 0.5);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
}

.social-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-link-card:hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: var(--honey-primary);
    color: var(--honey-primary);
    transform: translateY(-5px);
}

.social-link-card i {
    font-size: 28px;
}

.social-link-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cyber-dark) 0%, var(--cyber-black) 100%);
    z-index: 0;
}

.hexagon-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill='%23FFB800' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(255, 184, 0, 0.05);
    border: 2px solid var(--honey-primary);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--honey-primary), var(--honey-glow));
    border-radius: 50%;
    font-size: 36px;
    color: var(--cyber-black);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--honey-primary), var(--honey-glow));
    color: var(--cyber-black);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 184, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--honey-primary);
    color: var(--honey-primary);
}

.btn-secondary:hover {
    background: rgba(255, 184, 0, 0.1);
    transform: translateY(-2px);
}
.timeline-section,
.values-section,
.philosophy-section,
.location-section,
.cta-section {
    position: relative;
    z-index: 2;
    background: var(--cyber-black);
}
.about-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--cyber-black));
    pointer-events: none;
    z-index: 5;
}

@media(max-width: 1024px){
    .timeline-section, .values-section, .philosophy-section, .location-section, .cta-section{
        padding: 50px 0;
    }
}
@media (max-width: 992px) {
    .timeline-marker{
        grid-column: 1;
    }
    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        grid-template-columns: 80px 1fr;
    }

    .timeline-item-reverse {
        grid-template-columns: 80px 1fr;
    }

    .timeline-item-reverse .timeline-content {
        grid-column: 2;
    }

    .timeline-content {
        grid-column: 2;
    }

    .timeline-content:hover {
        transform: translateX(10px);
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .philosophy-image{
        width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero{
        height: 170vh;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        margin-top: 20px;
        gap: 10px;
    }

    .stat-item {
        justify-content: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 40px 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .timeline-content {
        padding: 24px;
    }

    .timeline-content h3 {
        font-size: 1.4rem;
    }

    .value-card {
        padding: 30px 20px;
    }

    .location-card {
        padding: 30px 20px;
    }
    .philosophy-image {
        width: 90%;
        margin: 0 auto;
    }
}
@media(max-width: 480px){
    .timeline::before{
        display: none;
    }
    .timeline-marker{
        display: none;
    }
    .timeline-item{
        grid-template-columns: 1fr;
    }
}
