          :root {
            --primary-color: #0d9084;
            --primary-light: rgba(13, 144, 132, 0.1);
            --secondary-color: #2C3E50;
            --accent-color: #FF6B6B;
            --text-color: #2C3E50;
            --light-bg: #F8FAFC;
            --border-color: rgba(0, 0, 0, 0.05);
        }
        /* ?????????? */
        .hero-section {
            background: linear-gradient(135deg, #0d9084 0%, #0a6b61 100%);
            color: white;
            padding: 6rem 0 4rem;
            margin-bottom: 0;
            position: relative;
            overflow: hidden;
            min-height: 50vh;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            font-weight: 300;
            max-width: 680px;
        }

        /* ????????? */
        .content-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        /* ???????? */
        .timeline-item {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .timeline-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .timeline-item h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        /* ???????????? */
        .value-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 2.5rem;
            height: 100%;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .value-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 144, 132, 0.1), rgba(10, 107, 97, 0.1));
            opacity: 0;
            transition: all 0.4s;
        }

        .value-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

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

        .value-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-light), rgba(13, 144, 132, 0.15));
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: all 0.3s;
        }

        .value-card:hover .value-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--primary-color), #0a6b61);
            color: white;
        }

        /* ????????????? */
        .contact-info {
            background: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .contact-card {
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-light), rgba(13, 144, 132, 0.15));
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            transition: all 0.3s;
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--primary-color), #0a6b61);
            color: white;
        }
 .section-padding {
            padding: 4rem 0;
        }

        .section-title {
            font-weight: 700;
            margin-bottom: 2.5rem;
            position: relative;
            display: inline-block;
            font-size: 2.2rem;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }
    
    
    .privacy-section {
            padding: 3rem 0;
            background: white;
            margin: 2rem 0;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .privacy-title {
            color: var(--secondary-color);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--primary-color);
        }

        .section-title0 {
            color: var(--primary-color);
            margin: 2rem 0 1rem;
            font-weight: 600;
        }

        .privacy-content p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        .privacy-content ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .privacy-content li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        .highlight-box {
            background: var(--primary-light);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }

        .highlight-box p {
            margin-bottom: 0;
        }

        .last-updated {
            font-size: 0.9rem;
            color: #666;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-color);
        }
        /**/
            .terms-section {
            padding: 3rem 0;
            background: white;
            margin: 2rem 0;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .terms-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .terms-title {
            color: var(--secondary-color);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--primary-color);
        }


        .terms-content p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        .terms-content ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .terms-content li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        .important-notice {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 1.5rem;
            margin: 2rem 0;
        }


    @media (max-width: 767px) {
        .privacy-section,.terms-section{
            padding: 0;
        }
        .privacy-content,.terms-content{
    padding: 1rem;
}
        .privacy-title,.terms-title{
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .highlight-box{
            margin: 1rem 0;
            padding: .75rem;
            font-size: .9rem;
        }
        .section-title0{
            font-size: 1.2rem;
        }
        .privacy-content p,.terms-content p{
            font-size:.9rem;
            margin-bottom: .5rem;
        }
        .privacy-content li,.terms-content li{
             font-size:.9rem;
             margin-bottom: .5rem;
        }
        .important-notice{
    padding: 1rem 1rem .75rem;
    border-radius: 12px;
}
        .important-notice h5{
            font-size: 1.1rem;
        }
    }




