        .about-container {
            width: 99vw;
            
        }

        .about-header {
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 30px;
            border-bottom: 2px solid var(--border-color);
        }

        .about-header h1 {
            font-size: 42px;
            color: var(--text-dark);
            margin-bottom: 16px;
            font-weight: 700;
        }

        .about-header p {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.8;
            margin: 0;
        }

        .about-section {
            margin-bottom: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--border-color);
        }

        .about-section:last-of-type {
            border-bottom: none;
            margin-bottom: 50px;
            padding-bottom: 0;
        }

        .about-section h2 {
            color: var(--primary-color);
            font-size: 28px;
            margin-bottom: 24px;
            font-weight: 700;
            margin-top: 0;
        }

        .about-section p {
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 16px;
            font-size: 15px;
        }

        .about-section p:last-child {
            margin-bottom: 0;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
            margin-top: 40px;
            margin-bottom: 0;
        }

        .value-card {
            background: var(--secondary-color);
            padding: 32px 24px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid var(--border-color);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 16px 32px rgba(255, 153, 0, 0.2);
            border-color: var(--primary-color);
            background: var(--white);
        }

        .value-card h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 12px;
            margin-top: 0;
            font-weight: 700;
        }

        .value-card p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
            flex-grow: 1;
        }

        .value-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(255, 153, 0, 0.12), rgba(76, 175, 80, 0.12));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 153, 0, 0.25);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .value-card:hover .value-icon {
            background: linear-gradient(135deg, rgba(255, 153, 0, 0.2), rgba(76, 175, 80, 0.2));
            border-color: var(--primary-color);
            transform: scale(1.1) rotate(-5deg);
        }

        .value-icon svg {
            width: 28px;
            height: 28px;
            color: var(--primary-color);
            stroke-width: 2.5;
        }

        .team-section {
            background: linear-gradient(135deg, var(--secondary-color), #fafafa);
            padding: 40px;
            border-radius: 12px;
            margin-top: 60px;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .team-section h2 {
            color: var(--text-dark);
            margin-top: 0 !important;
            margin-bottom: 16px !important;
            font-size: 26px !important;
        }

        .team-section>p:first-of-type {
            color: var(--text-light);
            margin: 0 0 24px 0;
            line-height: 1.8;
        }

        .team-section>p:last-of-type {
            color: var(--text-light);
            margin: 24px 0 0 0;
            line-height: 1.8;
            font-size: 15px;
        }

        .team-section a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .team-section a:hover {
            text-decoration: underline;
            color: #ff7700;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 40px;
            margin-top: 0;
            padding: 12px 20px;
            color: var(--white);
            background: linear-gradient(135deg, var(--primary-color), #ff7700);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 4px 12px rgba(255, 153, 0, 0.2);
            border: none;
            cursor: pointer;
        }

        .back-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 153, 0, 0.35);
            text-decoration: none;
        }

        .back-link:active {
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            .about-container {
                padding: 0px;
                margin: auto;
            }

            .about-header {
                margin-bottom: 50px;
                padding-bottom: 24px;
            }

            .about-header h1 {
                font-size: 32px;
                margin-bottom: 12px;
            }

            .about-header p {
                font-size: 16px;
            }

            .about-section {
                margin-bottom: 48px;
                padding-bottom: 32px;
            }

            .about-section h2 {
                font-size: 24px;
                margin-bottom: 18px;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-top: 32px;
            }

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

            .team-section {
                padding: 32px;
                margin-top: 48px;
            }

            .back-link {
                margin-bottom: 32px;
                padding: 10px 18px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .about-container {
                padding: 0px;
                margin: auto;
            }

            .about-header {
                margin-bottom: 40px;
                padding-bottom: 20px;
            }

            .about-header h1 {
                font-size: 28px;
            }

            .about-section {
                margin-bottom: 40px;
                padding-bottom: 24px;
            }

            .about-section h2 {
                font-size: 20px;
            }

            .about-section p {
                font-size: 14px;
            }

            .values-grid {
                gap: 20px;
                margin-top: 24px;
            }

            .value-card {
                padding: 24px 16px;
            }

            .value-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 16px;
            }

            .value-icon svg {
                width: 24px;
                height: 24px;
            }

            .team-section {
                padding: 24px;
                margin-top: 40px;
            }

            .back-link {
                padding: 10px 16px;
                font-size: 13px;
            }
        }
