   header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mountains" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><polygon fill="rgba(255,255,255,0.1)" points="0,20 10,5 20,20"/></pattern></defs><rect width="100" height="100" fill="url(%23mountains)"/></svg>');
            opacity: 0.3;
        }

        .header-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .logo {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .tagline {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Navigation */
        nav {
            background: rgba(83, 50, 125, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            justify-content: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover, .nav-links a.active {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Main Content */
        main {
            padding: 4rem 0;
        }

        .hero-section {
            text-align: center;
            margin-bottom: 4rem;
            margin-top:50px;
        }

        .hero-title {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #fff;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Story Section */
        .story-section {
            margin-bottom: 4rem;
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .story-content {
            padding: 2rem;
        }

        .story-content h2 {
            color: #53327d;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .story-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #53327d, #6c4298);
            border-radius: 2px;
        }

        .story-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #555;
            text-align: justify;
        }

        .story-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 400px;
            background: linear-gradient(135deg, #53327d 0%, #6c4298 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-align: center;
            padding: 2rem;
        }

        /* Values Section */
        .values-section {
            padding: 4rem 2rem;
            border-radius: 20px;
            margin-bottom: 4rem;
        
        }

        .values-title {
            text-align: center;
            color: #53327d;
            font-size: 2.2rem;
            margin-bottom: 3rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .value-card {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(83, 50, 125, 0.2);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #53327d 0%, #6c4298 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }

        .value-card h3 {
            color: #53327d;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .value-card p {
            color: #666;
            font-size: 1rem;
        }

        /* Team Section */
        .team-section {
            margin-bottom: 4rem;
        }

        .team-title {
            text-align: center;
            color: #53327d;
            font-size: 2.2rem;
            margin-bottom: 3rem;
        }

        .team-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
        }

        .team-content p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #53327d 0%, #6c4298 100%);
            color: white;
            padding: 4rem 2rem;
            border-radius: 20px;
            text-align: center;
            margin-bottom:60px;
        }

        .contact-title {
            font-size: 2.2rem;
            margin-bottom: 2rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.15);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-item h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .contact-item p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .story-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .nav-links {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }

            .logo {
                font-size: 2rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in:nth-child(1) { animation-delay: 0.1s; }
        .fade-in:nth-child(2) { animation-delay: 0.2s; }
        .fade-in:nth-child(3) { animation-delay: 0.3s; }
        
        
        
            .page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero-banner {
            background: linear-gradient(135deg, #53327d 0%, #7c5ba6 50%, #9a7bb8 100%);
            color: white;
            padding: 60px 40px;
            border-radius: 20px;
            margin-bottom: 40px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(83, 50, 125, 0.3);
            position: relative;
            overflow: hidden;
            margin-top:40px;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s linear infinite;
            opacity: 0.3;
        }

        @keyframes float {
            0% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
            100% { transform: translateX(0%) translateY(0%) rotate(360deg); }
        }

        .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .brand-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 2;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .help-section {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(83, 50, 125, 0.1);
        }

        .help-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: rgba(83, 50, 125, 0.2);
        }

        .section-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #53327d, #7c5ba6);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.5rem;
            color: white;
        }

        .section-header {
            font-size: 1.8rem;
            color: #53327d;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .help-step {
            background: #f8f9ff;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 4px solid #53327d;
            transition: all 0.2s ease;
        }

        .help-step:hover {
            background: #f0f2ff;
            transform: translateX(5px);
        }

        .step-number {
            display: inline-block;
            background: #53327d;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            text-align: center;
            font-weight: bold;
            margin-right: 12px;
            line-height: 28px;
            font-size: 0.9rem;
        }

        .contact-showcase {
            background: linear-gradient(135deg, #53327d 0%, #7c5ba6 100%);
            color: white;
            padding: 50px;
            border-radius: 20px;
            text-align: center;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .contact-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><polygon points="30,2 52,45 8,45" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
            opacity: 0.3;
        }

        .contact-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .contact-subtitle {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.15);
            padding: 30px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .contact-label {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color:#000;
        }

        .contact-info {
            font-size: 1rem;
            opacity: 0.95;
            color:#000;
        }

        .faq-container {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        .faq-title {
            font-size: 2.5rem;
            color: #53327d;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .faq-item {
            border-bottom: 1px solid rgba(83, 50, 125, 0.1);
            margin-bottom: 25px;
            padding-bottom: 25px;
        }

        .faq-question {
            font-size: 1.3rem;
            color: #53327d;
            font-weight: 600;
            margin-bottom: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: color 0.2s ease;
        }

        .faq-question:hover {
            color: #7c5ba6;
        }

        .faq-question::before {
            content: '→';
            margin-right: 12px;
            font-size: 1.1rem;
            transition: transform 0.2s ease;
        }

        .faq-question:hover::before {
            transform: translateX(5px);
        }

        .faq-answer {
            color: #555;
            line-height: 1.7;
            padding-left: 30px;
        }

        .emergency-banner {
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 30px;
            text-align: center;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .footer-note {
            text-align: center;
            color: #666;
            font-style: italic;
            margin-top: 40px;
            padding: 30px;
            background: white;
            border-radius: 12px;
            border: 2px dashed rgba(83, 50, 125, 0.2);
            margin-bottom:20px;
        }

        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-banner {
                padding: 40px 25px;
            }
            
            .help-section, .contact-showcase, .faq-container {
                padding: 30px 25px;
            }
            
            .contact-methods {
                grid-template-columns: 1fr;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
            .mountain-header {
            background: linear-gradient(135deg, #53327d 0%, #7a4fb3 100%);
            color: white;
            padding: 3rem 0 2rem;
            position: relative;
            overflow: hidden;
            text-align:center;
            margin-top:40px;
            border-radius:20px;
        }

        .mountain-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .brand-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            padding-bottom:20px;
        }

        .brand-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .brand-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .location-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .guidelines-intro {
            background: white;
            margin: -2rem 2rem 2rem;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(83, 50, 125, 0.1);
            position: relative;
            z-index: 3;
            border-top: 4px solid #53327d;
        }

        .intro-text {
            font-size: 1.1rem;
            color: #666;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .guidelines-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .guideline-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .guideline-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #53327d, #7a4fb3);
        }

        .guideline-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(83, 50, 125, 0.15);
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #53327d, #7a4fb3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: white;
            font-size: 1.5rem;
        }

        .card-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #53327d;
            margin-bottom: 1rem;
        }

        .card-content {
            color: #666;
            line-height: 1.7;
        }

        .highlight-list {
            list-style: none;
            margin: 1rem 0;
        }

        .highlight-list li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
        }

        .highlight-list li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: #53327d;
            font-weight: bold;
        }

        .emergency-section {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 2rem;
            border-radius: 16px;
            margin: 2rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .emergency-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h20v20H0V0zm10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16z'/%3E%3C/g%3E%3C/svg%3E");
        }

        .emergency-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .contact-item {
            background: rgba(255,255,255,0.15);
            padding: 1rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .contact-label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            opacity: 0.9;
            color:#fff;
        }

        .contact-value {
            font-size: 1.1rem;
            font-weight: 500;
            color:#fff;
        }

        .seasonal-tips {
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
            color: white;
            padding: 2rem;
            border-radius: 16px;
            margin: 2rem 0;
        }

        .seasonal-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .seasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .season-card {
            background: rgba(255,255,255,0.15);
            padding: 1.5rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .season-name {
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .footer-section {
            background: #53327d;
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
            text-align: center;
        }

        .footer-brand {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-tagline {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .brand-title {
                font-size: 2rem;
            }
            
            .guidelines-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .guideline-card {
                padding: 1.5rem;
            }
            
            .content-wrapper {
                padding: 0 1rem;
            }
            
            .guidelines-intro {
                margin: -2rem 1rem 2rem;
                padding: 1.5rem;
            }
        }
        
        
        
        
        
        
        
        
        .service-hero {
            background: linear-gradient(135deg, #53327d 0%, #6b46a3 100%);
            color: white;
            padding: 4rem 0 3rem;
            position: relative;
            overflow: hidden;
            border-radius:20px;
            margin-top:60px;
        }

        .service-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v22H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z'/%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            text-align: center;
            padding-bottom:10px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            margin-bottom: 1.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .support-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            font-weight: 600;
        }

        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-showcase {
            background: white;
            margin: -3rem 2rem 3rem;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(83, 50, 125, 0.15);
            position: relative;
            z-index: 3;
            border-top: 5px solid #53327d;
        }

        .showcase-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 600;
            color: #53327d;
            margin-bottom: 1rem;
        }

        .showcase-description {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(135deg, #53327d, #7a4fb3);
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(83, 50, 125, 0.2);
            border-color: #53327d;
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #53327d, #7a4fb3);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2rem;
        }

        .contact-method-title {
            font-size: 1.6rem;
            font-weight: 600;
            color: #53327d;
            margin-bottom: 1rem;
        }

        .contact-details {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .contact-action {
            display: inline-block;
            background: linear-gradient(135deg, #53327d, #7a4fb3);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-action:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(83, 50, 125, 0.3);
        }

        .service-hours {
            background: linear-gradient(135deg, #4a90e2, #357abd);
            color: white;
            padding: 2.5rem;
            border-radius: 20px;
            margin: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-hours::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='15' cy='15' r='4'/%3E%3C/g%3E%3C/svg%3E");
        }

        .hours-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .hours-card {
            background: rgba(255,255,255,0.15);
            padding: 1.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .hours-day {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .hours-time {
            opacity: 0.9;
            font-size: 1rem;
        }

        .support-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .service-category {
            background: white;
            border-radius: 18px;
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-left: 5px solid #53327d;
        }

        .service-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(83, 50, 125, 0.15);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #53327d, #7a4fb3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.5rem;
        }

        .service-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #53327d;
            margin-bottom: 1rem;
        }

        .service-description {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            padding: 0.3rem 0;
            position: relative;
            padding-left: 1.5rem;
            color: #555;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #53327d;
            font-weight: bold;
        }

        .emergency-support {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 2.5rem;
            border-radius: 20px;
            margin: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .emergency-support::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M12.5 0L15.1 9.4L25 12.5L15.1 15.6L12.5 25L9.9 15.6L0 12.5L9.9 9.4L12.5 0Z'/%3E%3C/g%3E%3C/svg%3E");
        }

        .emergency-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .emergency-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            position: relative;
            z-index: 2;
        }

        .emergency-contact {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 1rem 2rem;
            border-radius: 30px;
            font-size: 1.3rem;
            font-weight: 600;
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 2;
        }

        .footer-service {
            background: #53327d;
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            text-align: center;
            margin-bottom:40px;
            border-radius:20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-message {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .footer-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .info-item {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .info-label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .info-value {
            font-size: 1.1rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .contact-showcase {
                margin: -3rem 1rem 3rem;
                padding: 2rem;
            }
            
            .main-container {
                padding: 0 1rem;
            }
            
            .contact-methods {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .contact-card {
                padding: 2rem;
            }
        }
        
        
        
        
        
        
        
        
        
        
            .privacy-banner {
            background: linear-gradient(135deg, #53327d 0%, #7d5ba6 100%);
            color: white;
            padding: 4rem 0 3rem;
            position: relative;
            overflow: hidden;
            border-radius:20px;
            margin-top:60px;
            
        }

        .privacy-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M25 0C11.2 0 0 11.2 0 25s11.2 25 25 25 25-11.2 25-25S38.8 0 25 0zm0 45c-11 0-20-9-20-20s9-20 20-20 20 9 20 20-9 20-20 20z'/%3E%3C/g%3E%3C/svg%3E");
        }

        .banner-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            text-align: center;
            padding-bottom:40px;
        }

        .privacy-heading {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .privacy-intro {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 1.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .trust-indicator {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            font-weight: 600;
        }

        .content-area {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .policy-overview {
            background: white;
            margin: -3rem 2rem 3rem;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(83, 50, 125, 0.12);
            position: relative;
            z-index: 3;
            border-top: 5px solid #53327d;
        }

        .overview-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 600;
            color: #53327d;
            margin-bottom: 1.5rem;
        }

        .overview-text {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .last-updated {
            text-align: center;
            background: linear-gradient(135deg, #f8f9ff, #e8f2ff);
            padding: 1rem 2rem;
            border-radius: 50px;
            color: #53327d;
            font-weight: 600;
            border: 2px solid rgba(83, 50, 125, 0.1);
        }

        .policy-sections {
            display: grid;
            gap: 2.5rem;
            margin: 3rem 0;
        }

        .policy-block {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-left: 5px solid #53327d;
            position: relative;
            overflow: hidden;
        }

        .policy-block::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(83, 50, 125, 0.05), rgba(83, 50, 125, 0.02));
            border-radius: 50%;
            transform: translate(30px, -30px);
        }

        .policy-block:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(83, 50, 125, 0.15);
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .section-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #53327d, #7a4fb3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            margin-right: 1rem;
        }

        .section-title {
            font-size: 1.6rem;
            font-weight: 600;
            color: #53327d;
        }

        .section-content {
            color: #555;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

        .section-content p {
            margin-bottom: 1rem;
        }

        .data-list {
            background: rgba(83, 50, 125, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1rem 0;
            border-left: 4px solid #53327d;
        }

        .data-list h4 {
            color: #53327d;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        .data-list ul {
            list-style: none;
            padding-left: 0;
        }

        .data-list li {
            padding: 0.3rem 0;
            position: relative;
            padding-left: 1.5rem;
        }

        .data-list li::before {
            content: '▪';
            position: absolute;
            left: 0;
            color: #53327d;
            font-weight: bold;
        }

        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .right-item {
            background: rgba(83, 50, 125, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid #53327d;
        }

        .right-title {
            font-weight: 600;
            color: #53327d;
            margin-bottom: 0.5rem;
        }

        .contact-privacy {
            background: linear-gradient(135deg, #27ae60, #229954);
            color: white;
            padding: 2.5rem;
            border-radius: 20px;
            margin: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-privacy::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='35' height='35' viewBox='0 0 35 35' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M17.5 0L21.9 13.1L35 17.5L21.9 21.9L17.5 35L13.1 21.9L0 17.5L13.1 13.1L17.5 0Z'/%3E%3C/g%3E%3C/svg%3E");
        }

        .contact-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .contact-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            position: relative;
            z-index: 2;
        }

        .contact-details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }


        .detail-label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .detail-value {
            font-size: 1.1rem;
            font-weight: 500;
        }

        .security-badge {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 2rem;
            border-radius: 16px;
            margin: 2rem 0;
            text-align: center;
        }

        .security-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .security-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .security-item {
            background: rgba(255,255,255,0.15);
            padding: 1rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .policy-footer {
            background: #53327d;
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            text-align: center;
        }

        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-brand {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-tagline {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .privacy-heading {
                font-size: 2.5rem;
            }
            
            .policy-overview {
                margin: -3rem 1rem 3rem;
                padding: 2rem;
            }
            
            .content-area {
                padding: 0 1rem;
            }
            
            .policy-block {
                padding: 2rem;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            
            .section-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
        
        
        
        
        
        
        
        
        
              .terms-header {
            background: linear-gradient(135deg, #53327d 0%, #8b5fbf 100%);
            color: white;
            padding: 4rem 0 3rem;
            position: relative;
            overflow: hidden;
            border-radius:20px;
            margin-top:60px;
        }

        .terms-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M30 0v60M0 30h60M15 0v60M45 0v60M0 15h60M0 45h60'/%3E%3C/g%3E%3C/svg%3E");
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            text-align: center;
            padding-bottom:30px;
        }

        .terms-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .terms-description {
            font-size: 1.3rem;
            opacity: 0.95;
            margin-bottom: 1.5rem;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        .legal-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            font-weight: 600;
        }

        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .terms-introduction {
            background: white;
            margin: -3rem 2rem 3rem;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(83, 50, 125, 0.12);
            position: relative;
            z-index: 3;
            border-top: 6px solid #53327d;
        }

        .intro-heading {
            text-align: center;
            font-size: 2.3rem;
            font-weight: 600;
            color: #53327d;
            margin-bottom: 1.5rem;
        }

        .intro-content {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
        }

        .effective-date {
           display:none;
        }

        .terms-sections {
            display: grid;
            gap: 2.5rem;
            margin: 3rem 0;
        }

        .terms-section {
            background: white;
            border-radius: 22px;
            padding: 2.8rem;
            box-shadow: 0 12px 35px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-left: 6px solid #53327d;
            position: relative;
            overflow: hidden;
        }

        .terms-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(83, 50, 125, 0.03) 0%, transparent 70%);
            transform: translate(40px, -40px);
        }

        .terms-section:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 45px rgba(83, 50, 125, 0.15);
        }

        .section-heading {
            display: flex;
            align-items: center;
            margin-bottom: 1.8rem;
            position: relative;
            z-index: 2;
        }

        .heading-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #53327d, #7a4fb3);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-right: 1.2rem;
        }

        .heading-text {
            font-size: 1.7rem;
            font-weight: 600;
            color: #53327d;
        }

        .section-body {
            color: #555;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

        .section-body p {
            margin-bottom: 1.2rem;
        }

        .section-body h4 {
            color: #53327d;
            font-weight: 600;
            margin: 1.5rem 0 0.8rem;
            font-size: 1.2rem;
        }

        .policy-highlight {
            background: rgba(83, 50, 125, 0.06);
            padding: 1.8rem;
            border-radius: 14px;
            margin: 1.5rem 0;
            border-left: 5px solid #53327d;
            position: relative;
        }

        .policy-highlight::before {
            content: '⚠️';
            position: absolute;
            top: 1.2rem;
            right: 1.2rem;
            font-size: 1.2rem;
        }

        .highlight-title {
            color: #53327d;
            font-weight: 600;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }

        .terms-list {
            list-style: none;
            padding-left: 0;
            margin: 1.2rem 0;
        }

        .terms-list li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 2rem;
            line-height: 1.7;
        }

        .terms-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #53327d;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .cancellation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .cancellation-item {
            background: rgba(83, 50, 125, 0.05);
            padding: 1.8rem;
            border-radius: 14px;
            border-left: 5px solid #53327d;
        }

        .cancellation-period {
            font-weight: 600;
            color: #53327d;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }

        .cancellation-fee {
            color: #e74c3c;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .important-notice {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: white;
            padding: 2.8rem;
            border-radius: 20px;
            margin: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .important-notice::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M20 5L25 15H35L27 23L30 35L20 30L10 35L13 23L5 15H15L20 5Z'/%3E%3C/g%3E%3C/svg%3E");
        }

        .notice-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            position: relative;
            z-index: 2;
        }

        .notice-content {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .emergency-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .emergency-item {
            background: rgba(255,255,255,0.15);
            padding: 1.5rem;
            border-radius: 14px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .emergency-label {
            font-weight: 600;
            margin-bottom: 0.8rem;
            opacity: 0.9;
        }

        .emergency-value {
            font-size: 1.1rem;
            font-weight: 500;
        }

        .jurisdiction-section {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 2.8rem;
            border-radius: 20px;
            margin: 3rem 0;
            text-align: center;
        }

        .jurisdiction-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .jurisdiction-content {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.95;
        }

        .terms-footer {
            background: #53327d;
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            text-align: center;
            border-radius:20px;
            margin-bottom:60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-heading {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-text {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            color:#000;
        }

        .contact-block {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .contact-heading {
            font-weight: 600;
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .contact-detail {
            font-size: 1.1rem;
            font-weight: 500;
            color:#fff;
        }

        @media (max-width: 768px) {
            .terms-title {
                font-size: 2.8rem;
            }
            
            .terms-introduction {
                margin: -3rem 1rem 3rem;
                padding: 2.5rem;
            }
            
            .page-container {
                padding: 0 1rem;
            }
            
            .terms-section {
                padding: 2.2rem;
            }
            
            .section-heading {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            
            .heading-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }

            .cancellation-grid {
                grid-template-columns: 1fr;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        .main-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .hero-section {
            background: linear-gradient(135deg, #53327d 0%, #6a4c96 100%);
            color: white;
            padding: 3rem 2rem;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 3rem;
            box-shadow: 0 10px 40px rgba(83, 50, 125, 0.2);
        }

        .main-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .policy-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #53327d;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #53327d, #7b5aa6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .card-title {
            font-size: 1.4rem;
            color: #53327d;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .card-content {
            color: #555;
            line-height: 1.7;
        }

        .refund-timeline {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        }

        .timeline-title {
            font-size: 1.8rem;
            color: #53327d;
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .timeline-items {
            display: grid;
            gap: 1rem;
        }

        .timeline-item {
            display: flex;
            align-items: center;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f8f4ff 0%, #ede4ff 100%);
            border-radius: 12px;
            border-left: 4px solid #53327d;
        }

        .timeline-period {
            font-weight: 600;
            color: #53327d;
            min-width: 200px;
            font-size: 1rem;
        }

        .timeline-refund {
            font-weight: 600;
            color: #2d5a27;
            background: #d4edda;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .policy-list {
            list-style: none;
            padding: 0;
        }

        .policy-list li {
            margin-bottom: 0.8rem;
            padding-left: 2rem;
            position: relative;
            color: #555;
        }

        .policy-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #53327d;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .warning-card {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
            border: 1px solid #fecaca;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .warning-title {
            color: #dc2626;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .success-card {
            background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
            border: 1px solid #bbf7d0;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .success-title {
            color: #16a34a;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-banner {
            background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 2rem;
        }

        .contact-banner-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 1.2rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .contact-label {
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
        }

        .contact-value {
            font-size: 1rem;
            opacity: 0.95;
        }

        .support-banner {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            margin-bottom:30px;
        }

        .support-title {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .support-subtitle {
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .highlight-text {
            background: linear-gradient(135deg, #53327d, #7b5aa6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .main-wrapper {
                padding: 0 0.5rem;
            }
            
            .hero-section {
                padding: 2rem 1.5rem;
            }
            
            .main-title {
                font-size: 2rem;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            .timeline-item {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }
            
            .timeline-period {
                min-width: auto;
            }
        }
        
        
        .bravo_wrap .bravo_search_tour .bravo-list-item .list-item .item-tour{
             border: 2px solid rgba(127,79,187,.35);
                    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 6px 18px rgba(0,0,0,.28); transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease, outline-color .25s ease;
                    outline: 2px solid transparent;
        }
        
        
        .bravo_wrap .bravo_search_tour .bravo-list-item .list-item .item-tour:hover{
        

                    transform: translateY(-2px) scale(1.02);
                    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 28px rgba(0,0,0,.35);
                    outline-color: rgba(127,79,187,.35);}