.fade-in { animation: fadeIn 0.8s ease-in-out; }
.slide-up { animation: slideUp 0.6s ease-out; }
.sticky-nav { position: sticky; top: 0; z-index: 1000; transition: all 0.3s ease; }
.nav-scrolled { background: rgba(255, 255, 255, 0.95); box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-content.active { max-height: 500px; }
.bg-light { background-color: rgba(237, 237, 237, 1); }
.logoImg { width: 100px; object-fit: contain; }
.logoContainer { display: flex; align-items: center; flex-direction: column; gap: 7px;}
.logoTxt{ text-transform: uppercase; font-weight: bold; font-size: 24px;}
.primaryLogoTxt { color: #08025a; }
.secondLogoTxt { color: #085f8c; }
.thirdLogoTxt { color: #505050; }
.heroSection { background-image: url('../img/hero-bg.webp'); background-position: 50%; background-size: cover; background-repeat: no-repeat; }
.heroTitleTxt{ text-transform: uppercase; font-size: 4vw;}
.formContainer{min-height: 682px;}
.topHeader { box-shadow: 0px 3px 15px 3px #cccccc; position: relative; }
.privacy-policy .header, .terms-of-service .header{ box-shadow: 0px 3px 15px 0px #cccccc; position: relative; }
.social-icons a{ font-size: 34px; }

/* Privecy Policy Section */
.privacy-policy {
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
}

.privacy-policy .container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #cccccc;
    margin-top: 100px;
}

.privacy-policy .header {
    color: white;
    padding: 40px;
    text-align: center;
}

.privacy-policy .header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #000000 !important;
}

.privacy-policy .header p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #000000 !important;
}

.privacy-policy .content {
    padding: 50px;
}

.privacy-policy .section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.privacy-policy .section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-policy .section h2 {
    font-size: 1.6rem;
    color: #08025a;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.privacy-policy .section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #08025a, #085f8c);
    border-radius: 2px;
}

.privacy-policy .section h3 {
    font-size: 1.2rem;
    color: #495057;
    margin: 20px 0 15px 0;
    font-weight: 600;
}

.privacy-policy .section p {
    margin-bottom: 16px;
    font-size: 1rem;
    text-align: justify;
}

.privacy-policy .section ul {
    margin: 16px 0;
    padding-left: 0;
}

.privacy-policy .section li {
    list-style: none;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.privacy-policy .section li::before {
    content: '•';
    color: #08025a;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 10px;
    top: 8px;
}

.privacy-policy .company-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #08025a;
    margin: 20px 0;
    font-style: italic;
}

.privacy-policy .contact-info {
    background: linear-gradient(135deg, #08025a10, #085f8c10);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
}

.privacy-policy .contact-info h3 {
    color: #08025a;
    margin-bottom: 15px;
}

.privacy-policy .contact-info a {
    color: #08025a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-policy .contact-info a:hover {
    color: #085f8c;
    text-decoration: underline;
}

.privacy-policy .highlight {
    background: linear-gradient(135deg, #08025a15, #085f8c15);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #08025a;
    margin: 20px 0;
}

.privacy-policy .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.privacy-policy .right-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-top: 3px solid #08025a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-policy .right-item h4 {
    color: #08025a;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.privacy-policy .right-item p {
    font-size: 0.95rem;
    margin: 0;
}


/* Terms of Service */
.terms-of-service {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
}

.terms-of-service .container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 100px;
}

.terms-of-service .header {
    color: white;
    padding: 40px;
    text-align: center;
}

.terms-of-service .header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #000000 !important;
}

.terms-of-service .header p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #000000 !important;
}

.terms-of-service .content {
    padding: 50px;
}

.terms-of-service .section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.terms-of-service .section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-of-service .section h2 {
    font-size: 1.6rem;
    color: #08025a;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.terms-of-service .section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #08025a, #085f8c);
    border-radius: 2px;
}

.terms-of-service .section h3 {
    font-size: 1.2rem;
    color: #495057;
    margin: 20px 0 15px 0;
    font-weight: 600;
}

.terms-of-service .section p {
    margin-bottom: 16px;
    font-size: 1rem;
    text-align: justify;
}

.terms-of-service .section ul {
    margin: 16px 0;
    padding-left: 0;
}

.terms-of-service .section li {
    list-style: none;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.terms-of-service .section li::before {
    content: '•';
    color: #08025a;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 10px;
    top: 8px;
}

.terms-of-service .company-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #08025a;
    margin: 20px 0;
    font-style: italic;
}

.terms-of-service .contact-info {
    background: linear-gradient(135deg, #08025a10, #085f8c10);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
}

.terms-of-service .contact-info h3 {
    color: #08025a;
    margin-bottom: 15px;
}

.terms-of-service .contact-info a {
    color: #08025a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-of-service .contact-info a:hover {
    color: #085f8c;
    text-decoration: underline;
}

.terms-of-service .highlight {
    background: linear-gradient(135deg, #08025a15, #085f8c15);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #08025a;
    margin: 20px 0;
}

.terms-of-service .warning-box {
    background: linear-gradient(135deg, #ff634715, #ff455115);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ff6347;
    margin: 20px 0;
    color: #d32f2f;
}

.terms-of-service .warning-box strong {
    color: #b71c1c;
}

.terms-of-service .caps-text {
    font-weight: 600;
    color: #495057;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 3px solid #08025a;
}

.terms-of-service .subsection {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.terms-of-service .subsection h4 {
    color: #08025a;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

 #cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #08025a;
    color: #f1f1f1;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}
#cookie-banner p {
    margin: 0 0 10px 0;
    line-height: 1.4;
}
#cookie-banner button {
    padding: 8px 16px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}
#cookie-banner .accept-btn {
    background-color: #085f8c;
    color: #f1f1f1;
}
#cookie-banner .accept-btn:hover {
    background-color: #0a7aae;
}
#cookie-banner .decline-btn {
    background-color: #f1f1f1;
    color: #08025a;
}
#cookie-banner .decline-btn:hover {
    background-color: #e0e0e0;
}

@media screen and (min-width: 480px) {
    .heroTitleTxt {
        font-size: 6vw;
    }
}
@media screen and (min-width: 768px) {
    .heroTitleTxt {
        font-size: 5.5vw;
    }
}
@media screen and (min-width: 996px) {
    .heroTitleTxt {
        font-size: 5.5vw;
    }
}
@media screen and (min-width: 1280px) {
    .heroTitleTxt {
        font-size: 3.7vw;
    }
}
@media screen and (min-width: 1920px) {
    .heroTitleTxt {
        font-size: 4vw;
    }
}

@media screen and (max-width: 768px) {
    .logoImg {
        width: 70px;;
    }
    .logoTxt{
        font-size: 18px;
    }
    .terms-of-service .terms-of-service {
        padding: 40px 15px;
    }

    .terms-of-service .content {
        padding: 30px 25px;
    }

    .terms-of-service .header {
        padding: 30px 25px;
    }

    .terms-of-service .header h1 {
        font-size: 2rem;
    }

    .terms-of-service .section h2 {
        font-size: 1.4rem;
    }
    .privacy-policy {
        padding: 40px 15px;
    }

    .privacy-policy .content {
        padding: 30px 25px;
    }

    .privacy-policy .header {
        padding: 30px 25px;
    }

    .privacy-policy .header h1 {
        font-size: 2rem;
    }

    .privacy-policy .section h2 {
        font-size: 1.4rem;
    }

    .privacy-policy .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .heroTitleTxt {
        font-size: 9vw;
    }
    .terms-of-service .header h1 {
        font-size: 1.8rem;
    }

    .terms-of-service .content {
        padding: 20px;
    }

    .terms-of-service .section {
        margin-bottom: 30px;
    }
    .privacy-policy .header h1 {
        font-size: 1.8rem;
    }

    .privacy-policy .content {
        padding: 20px;
    }

    .privacy-policy .section {
        margin-bottom: 30px;
    }
}