:root {
    --primary: #6200EE;
    --primary-light: #7c4dff;
    --primary-dark: #4a148c;
    --danger: #B71C1C;
    --warning: #FFA000;
    --success: #4CAF50;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background-color: var(--gray-100);
    color: var(--gray-900);
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5em;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary);
}

h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

h3 {
    font-size: 1.4rem;
    color: var(--gray-800);
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

ul,
ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

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

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(98, 0, 238, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation styles */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 2.0rem;
}

.logo-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.nav-cta .btn {
    padding: 8px 16px;
}

/* Mobile menu styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--gray-800);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

/* Main content styles */
.main-content {
    padding: 60px 0;
    min-height: calc(100vh - 350px);
    /* Adjust for header and footer */
}

.privacy-container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.last-updated {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-intro {
    margin-bottom: 2rem;
}

.toc {
    background-color: var(--gray-100);
    padding: 20px 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.toc-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.toc-list {
    list-style-type: none;
    padding-left: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: padding 0.3s ease;
}

.toc-list a:hover {
    padding-left: 5px;
    border-color: var(--primary-light);
}

.info-box {
    background-color: rgba(98, 0, 238, 0.05);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.warning-box {
    background-color: rgba(255, 160, 0, 0.05);
    border-left: 4px solid var(--warning);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.security-box {
    background-color: rgba(76, 175, 80, 0.05);
    border-left: 4px solid var(--success);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:target {
    animation: highlight 2s ease;
}

@keyframes highlight {
    0% {
        background-color: rgba(124, 77, 255, 0.1);
    }

    100% {
        background-color: transparent;
    }
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-300);
}

th {
    background-color: var(--gray-100);
    font-weight: 500;
    color: var(--gray-800);
}

tr:hover {
    background-color: var(--gray-100);
}

/* Footer styles */
footer {
    background-color: var(--gray-900);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-column h3 {
    color: var(--gray-300);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-contact-item:hover {
    color: white;
}

.footer-contact-item svg {
    margin-right: 8px;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--gray-400);
}

.footer-heading {
    color: var(--gray-300);
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-light);
}

/* Disclaimer section */
.disclaimer-section {
    background-color: var(--gray-900);
    padding: 30px 0;
    border-top: 1px solid var(--gray-800);
}

.disclaimer-title {
    color: var(--gray-400);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.disclaimer-content {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.5;
    text-align: left;
}

.disclaimer-content p {
    margin-bottom: 12px;
}

.disclaimer-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.disclaimer-content a:hover {
    color: var(--primary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--gray-900);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: block;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    color: var(--gray-300);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-button {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-button:hover {
    background-color: var(--primary-dark);
}

.cookie-link {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}

.modal-close-btn:hover {
    background-color: var(--gray-200);
    color: var(--gray-900);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(124, 77, 255, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-light);
}

.modal-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-message {
    margin-bottom: 20px;
    color: var(--gray-700);
}

.modal-email-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin: 20px 0;
}

.modal-email-form input {
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-size: 1rem;
    color: var(--gray-800);
}

.modal-email-form .btn {
    padding: 12px 20px;
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 10px;
}

.modal-close {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.modal-close:hover {
    background-color: var(--primary-dark);
}

/* Trust Badges Section */
.trust-badges-section {
    background-color: rgba(33, 33, 33, 0.8);
    padding: 25px 0;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
}

.trust-badges-heading {
    text-align: center;
    color: var(--gray-300);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.badge-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.badge-text {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-top: 8px;
}

.trust-badge img {
    height: 40px;
    object-fit: contain;
}

.aws-badge {
    height: 30px !important;
}

.payment-cards-container {
    margin-top: 8px;
}

.payment-cards {
    height: auto;
    width: 150px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trust-badges {
        gap: 20px;
    }

    .trust-badge {
        padding: 5px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .trust-badge img {
        height: 30px;
    }

    .aws-badge {
        height: 25px !important;
    }

    .payment-cards {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .trust-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .payment-cards {
        width: 100px;
    }
}

/* Data Privacy Compliance Section */
.compliance-badges {
    text-align: center;
    margin-bottom: 35px;
}

.compliance-title {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.badges-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
}

/* For responsive design */
@media (max-width: 768px) {
    .badges-container {
        gap: 20px;
    }

}

/* Animation for modal */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal.active .modal-content {
    animation: modalFadeIn 0.3s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .modal-content {
        width: calc(100% - 40px);
        max-width: none;
        margin: 0 20px;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .main-content {
        padding: 40px 0;
    }

    .privacy-container {
        padding: 25px;
    }

    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }

    /* Hamburger menu */
    .nav-list {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 10px 0;
        box-shadow: var(--shadow);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-item {
        margin: 10px 20px;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}