/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-display: swap;
    font-family: "Hornbill";
    src: url("../fonts/HornbillTrial-BlackItalic.ttf") format("truetype");
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, #60368C, #b27be9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.fresh-text {
    font-family: Hornbill, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 2px;
    line-height: 100%;
    background: linear-gradient(135deg, #60368C, #b27be9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 2s ease-in-out infinite;
}

.fresh-text-white {
    font-family: Hornbill, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 2px;
    background: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 2s ease-in-out infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-purple {
    background: linear-gradient(135deg, #60368C, #7c4db8);
    color: white;
}

.section-light {
    background-color: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.section-purple .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #60368C, #7c4db8);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(96, 54, 140, 0.3);
}

.btn-secondary {
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
    background-color: #e5e7eb;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: #60368C;
    border: 2px solid #60368C;
}

.btn-outline:hover {
    background-color: #60368C;
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background-color: white;
    color: #60368C;
    border: 2px solid white;
}

.btn-white:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: auto;
    height: 85px;
    object-fit: cover;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #1a202c;
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #60368C, #7c4db8);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn {
    margin-left: 16px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    letter-spacing: -0.01em;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav.scrolled .hamburger-line {
    background-color: #1a1a1a;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
}

.mobile-nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #60368C;
    transform: translateY(-2px);
}

.mobile-nav-links .btn {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 16px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #1a1a1a;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-menu-close:hover {
    background-color: rgba(96, 54, 140, 0.1);
    color: #60368C;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(224, 214, 245, 0.85) 70%, rgba(160, 132, 202, 0.7) 100%),
        url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: justify;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #60368C;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #ffffff, #f3f4f6);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background-color: #1a1a1a;
    border-radius: 3px;
}

.app-screenshot {
    width: auto;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(5px 5px 5px #3d3d3d);
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.05);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.step-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
}

/* Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.impact-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.impact-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.impact-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: white;
    text-align: center;
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.partner-logo {
    padding: 32px;
    background: white;
    border-radius: 12px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: #60368C;
    color: #60368C;
    transform: translateY(-2px);
}

.partner-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.partner-cta p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #7c4db8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #7c4db8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .logo-image {
        width: auto;
        height: 56px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
.btn:focus,
.nav-links a:focus,
.footer-link:focus,
.social-link:focus {
    outline: 2px solid #60368C;
    outline-offset: 2px;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    line-height: 1.7;
}

.terms-header {
    text-align: center;
    margin-bottom: 60px;
}

.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #60368C;
}

.terms-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 24px;
}

.terms-date {
    font-size: 0.95rem;
    color: #9ca3af;
    font-style: italic;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #60368C;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.terms-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 24px 0 12px 0;
}

.terms-section p {
    margin-bottom: 16px;
    color: #4b5563;
    text-align: justify;
}

.terms-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.terms-section li {
    margin-bottom: 8px;
    color: #4b5563;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-button {
    position: fixed;
    top: 120px;
    left: 24px;
    background: white;
    border: 2px solid #60368C;
    color: #60368C;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(96, 54, 140, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-button:hover {
    background: #60368C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 54, 140, 0.3);
}

@media (max-width: 768px) {
    .terms-container {
        padding: 100px 16px 60px;
    }

    .terms-title {
        font-size: 2rem;
    }

    .back-button {
        position: static;
        margin-bottom: 20px;
        align-self: flex-start;
    }
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #60368C;
}

.about-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: grid;
    gap: 80px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-section:nth-child(even) {
    direction: rtl;
}

.about-section:nth-child(even)>* {
    direction: ltr;
}

.about-text {
    padding: 0 20px;
}

.about-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #60368C;
    margin-bottom: 24px;
}

.about-section-content {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    text-align: justify;
}

.about-section-content p {
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-section {
    background: linear-gradient(135deg, #60368C, #7c4db8);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.values-section {
    text-align: center;
    margin: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #60368C, #7c4db8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #60368C;
    margin-bottom: 16px;
}

.value-description {
    color: #6b7280;
    line-height: 1.6;
}

.team-section {
    background: #fafafa;
    padding: 80px 40px;
    border-radius: 20px;
    margin: 60px 0;
}

.team-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #60368C;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #60368C;
    margin-bottom: 8px;
}

.member-role {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 16px;
}

.member-description {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.back-button {
    position: fixed;
    top: 120px;
    left: 24px;
    background: white;
    border: 2px solid #60368C;
    color: #60368C;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(96, 54, 140, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
}

.back-button:hover {
    background: #60368C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 54, 140, 0.3);
}

@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section:nth-child(even) {
        direction: ltr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 100px 16px 60px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-section-title {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .back-button {
        position: static;
        margin-bottom: 20px;
        align-self: flex-start;
    }

    .team-section,
    .stats-section {
        padding: 40px 20px;
    }
}