:root {
            --primary: #0070c0;
            --primary-dark: #005a9c;
            --primary-blue: #0070c0;
            --secondary-blue: #50b9ff;
            --accent: #50b9ff;
            --success-green: #84c101;
            --dark-gray: #484848;
            --light-gray: #f5f5f5;
            --text-dark: #333;
            --text-light: #666;
            --white: #fff;
            --accent-orange: #fd9047;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            background: linear-gradient(135deg, #0070c0 0%, #764ba2 100%);
            color: white;
            padding: 30px 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1160px;
            margin: 0 auto;
            gap: 30px;
            background: white;
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .header-logo {
            flex-shrink: 0;
        }

        .header-logo img {
            height: 80px;
            width: auto;
        }

        .header-text {
            flex-grow: 1;
            text-align: center;
        }

        header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        header p {
            font-size: 1.2rem;
            opacity: 0.95;
        }

        .header-right-logo {
            flex-shrink: 0;
        }

        .header-right-logo img {
            height: 90px;
            width: auto;
        }

        .info-section {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin: 20px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .highlight-box {
            background: linear-gradient(135deg, #4A90E2 0%, #55c4f0 100%);
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            text-align: center;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin: 15px 0;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-item a {
            color: #55c4f0;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-item a:hover {
            text-decoration: underline;
        }

        .form-section {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin: 30px auto;
            max-width1: 900px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-section h2 {
            color: ##0070c0;
            margin-bottom: 30px;
            text-align: center;
            font-size: 2rem;
        }

        .form-group {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
        }

        .form-group:last-child {
            border-bottom: none;
        }

        .form-label {
            font-weight: 600;
            color: #495057;
            margin-bottom: 8px;
            display: block;
            font-size: 1.05rem;
        }

        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #0070c0;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        select.form-input {
            cursor: pointer;
            background-color: white;
        }

        .form-hint {
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 5px;
            font-style: italic;
        }

        .price-display {
            background: linear-gradient(35deg, #0070c0 0%, #55c4f0 100%);
            color: white;
            padding: 25px;
            border-radius: 12px;
            margin: 20px 0;
            text-align: center;
        }

        .price-main {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 10px 0;
        }

        .price-details {
            font-size: 1rem;
            opacity: 0.9;
        }

        .feature-badge {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
            font-weight: 600;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .checkbox-container input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, #0070c0 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            width: 100%;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .success-message {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            color: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            font-size: 1.2rem;
            margin: 20px 0;
        }

        .action-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 15px 0;
        }

        .action-link {
            padding: 12px 24px;
            background: white;
            color: #0070c0;
            border: 2px solid #0070c0;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .action-link:hover {
            background: #0070c0;
            color: white;
        }

        footer {
            text-align: center;
            padding: 30px;
            margin-top: 50px;
            color: #6c757d;
        }

        footer a {
            color: #0070c0;
            text-decoration: none;
            margin: 0 15px;
        }

        footer a:hover {
            text-decoration: underline;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 15px;
            align-items: start;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 1.8rem;
            }

            .form-section {
                padding: 20px;
            }

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

            .contact-info {
                flex-direction: column;
                gap: 15px;
            }

            .action-links {
                flex-direction: column;
            }
        }

        .hidden {
            display: none;
        }
                .faq-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e8ecf1 100%);
        }

        .faq-container {
            margin-top: 2rem;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 20px rgba(0, 112, 192, 0.15);
            transform: translateY(-2px);
        }

        .faq-question {
            background: linear-gradient(135deg, #f1f8ff 0%, #e6f2ff 100%);
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-left: 4px solid #0070c0;
            position: relative;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #e6f2ff 0%, #d9ebff 100%);
        }

        .faq-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .faq-question h3 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: #0070c0;
            line-height: 1.4;
            flex: 1;
        }

        .faq-toggle {
            font-size: 1.8rem;
            font-weight: 300;
            color: #0070c0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: white;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
            background: #0070c0;
            color: white;
        }

        .faq-answer {
            padding: 0 1.5rem;
            color: #2c3e50;
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
        }

        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 2000px;
            opacity: 1;
        }

        .faq-answer p {
            margin-bottom: 1rem;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer ul, .faq-answer ol {
            margin: 1rem 0 1rem 1.5rem;
            padding: 0;
        }

        .faq-answer li {
            margin-bottom: 0.5rem;
            color: #5a6c7d;
        }

        .faq-answer strong {
            color: #0070c0;
            font-weight: 600;
        }

        #frm_ma.placeholder-selected {
            border: 2px solid #ff6b6b;
            background-color: #fff5f5;
            box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
            font-weight: 600;
            color: #666;
        }

        #frm_ma.placeholder-selected {
            animation: subtle-pulse 2s ease-in-out infinite;
        }

        @keyframes subtle-pulse {
            0%, 100% {
                box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
            }
            50% {
                box-shadow: 0 0 12px rgba(255, 107, 107, 0.5);
            }
        }
        a {
    cursor: pointer;
}
.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
    background: #f0f0f0;
  padding: 4px;
  border-radius: 12px;
}
.language-selector.show {
    animation: popIn 0.9s ease-out;
}

@keyframes popIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    25% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(0.75);
    }
    75% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

 @media (max-width: 768px) {
 .language-selector {
                margin-left: 0;
                margin-top: 1rem;
            }
 }

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.lang-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
    cursor: default;
}


.form-section h2 {
    position: relative;
    display: inline-block;
}

.form-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #0070c0, transparent);
    border-radius: 2px;
}

.form-input {
    background: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    transform: translateY(-1px);
}

select.form-input {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%230070c0" d="M6 8L0 0h12z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-primary {
    box-shadow: 0 4px 16px rgba(0, 112, 192, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(0, 112, 192, 0.4);
}

.success-message {
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.process-list {
    list-style: none;
    counter-reset: step-counter;
    margin: 1rem 0;
    padding: 0;
}

.process-list > li {
    counter-increment: step-counter;
    margin-bottom: 1.25rem;
    padding-left: 0;
}

.process-list > li::before {
    content: counter(step-counter);
    background: linear-gradient(135deg, #0070c0 0%, #005a9e 100%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 112, 192, 0.3);
}

.process-list ul {
    margin-top: 0.5rem;
}

.hide {
display: none !important;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.header-logo img,
.header-right-logo img {
    max-width: 120px;
    height: auto;
}

.header-text {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.header-text h1 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    line-height: 1.2;
}

.header-text p {
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px;
    }
    
    .header-logo img,
    .header-right-logo img {
        max-width: 80px;
    }
    
    .header-text h1 {
        font-size: 1.4rem;
    }
    
    .header-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 700px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    
    .header-logo,
    .header-right-logo {
        order: 1;
    }
    
    .header-text {
        order: 2;
        width: 100%;
    }
    
    .header-right-logo {
        display: none;
    }
    
    .header-text h1 {
        font-size: 1.2rem;
    }
    
    .header-text p {
        font-size: 0.85rem;
    }
}