/* Variables */
:root {
    --primary-color: #2043f7;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --error-color: #dc3545;
    --success-color: #28a745;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: white;
    transform: translateY(-2px);
}

/* Header */
.main-header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 4px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 50px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo {
    height: 60px;
    width: auto;
    margin-right: 15px;
    margin-top: 0px;
    margin-bottom: 0px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-header {
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-header i {
    font-size: 1.5rem;
}

.faq-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-content {
    padding: 20px;
}

.steps-list {
    list-style: none;
}

.steps-list ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.steps-list ul ul {
    list-style: circle;
    margin-left: 20px;
    margin-top: 5px;
}

.steps-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    margin-bottom: 5px;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.faq-note {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(32, 67, 247, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.faq-note p {
    margin: 0;
    color: var(--primary-color);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px var(--shadow-color);
    overflow: hidden;
    animation: scaleIn 0.5s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(32, 67, 247, 0.05);
}

.accordion-header i:first-child {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.accordion-header span {
    flex: 1;
}

.accordion-header i.fa-chevron-down {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i.fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 500px;
}

.accordion-content p {
    margin-bottom: 15px;
}

.accordion-content ul,
.accordion-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.accordion-content li {
    margin-bottom: 8px;
}

.accordion-content .note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: rgba(32, 67, 247, 0.1);
    border-radius: 4px;
    margin-top: 15px;
    color: var(--primary-color);
}

.accordion-content .note i {
    color: var(--primary-color);
}

/* Steps Accordion */
.steps-accordion {
    margin-bottom: 20px;
}

.step-item {
    background: white;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px var(--shadow-color);
    overflow: hidden;
    animation: scaleIn 0.5s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-header {
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.step-header:hover {
    background-color: rgba(32, 67, 247, 0.05);
}

.step-number {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-title {
    flex: 1;
    font-weight: 500;
    color: var(--text-color);
}

.step-header i.fa-chevron-down {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.step-item.active .step-header i.fa-chevron-down {
    transform: rotate(180deg);
}

.step-content {
    padding: 0;
    max-height: 0;
    overflow: auto;
    transition: all 0.3s ease;
    background-color: rgba(32, 67, 247, 0.02);
}

.step-item.active .step-content {
    padding: 15px;
    max-height: 300px;
}

.step-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.step-content li {
    margin-bottom: 5px;
}

.step-content ul ul {
    list-style: circle;
    margin-top: 5px;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.payment-method {
    text-align: center;
    padding: 15px;
    background-color: var(--secondary-color);
    border-radius: 8px;
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* Requirements List */
.requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: var(--secondary-color);
    border-radius: 8px;
}

.requirement i {
    color: var(--primary-color);
}

/* Info Request Section */
.info-request-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.info-request-section .form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.info-request-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-request-form .btn-submit {
    align-self: flex-end;
    padding: 12px 30px;
}

.info-request-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Deletion Section */
.deletion-section {
    padding: 60px 0;
    background-color: white;
    margin-top: 40px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.deletion-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.form-group i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(32, 67, 247, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--secondary-color);
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.thank-you-content i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-content h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thank-you-content p {
    color: var(--text-color);
    margin-bottom: 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: #1a3ec7;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section p a:hover {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.footer-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-link i {
    font-size: 1.2rem;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.app-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll Animations */
[data-scroll] {
    opacity: 0;
    transition: all 1s ease;
}

[data-scroll="fade-up"] {
    transform: translateY(50px);
}

[data-scroll="fade-down"] {
    transform: translateY(-50px);
}

[data-scroll="fade-right"] {
    transform: translateX(-50px);
}

[data-scroll="fade-left"] {
    transform: translateX(50px);
}

[data-scroll="zoom"] {
    transform: scale(0.9);
}

[data-scroll].in-view {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Parallax effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-position 0.3s ease;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a3ec7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .form-container {
        padding: 20px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .nav-logo {
        height: 45px;
    }

    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-methods,
    .requirements-list {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/*privacy*/
.definition {
    margin-bottom: 20px;
}
.term {
    font-weight: bold;
    color:rgb(12, 12, 12);
}
ul {
    margin-left: 20px;
}