:root {
    --primary-color: #00FFFF; /* Cyan */
    --secondary-color: #FF00FF; /* Magenta */
    --accent-color: #FFFF00; /* Yellow */
    --dark-bg: #1a0033; /* Dark Purple */
    --light-bg: #2a004a;
    --text-color: #E0E0E0;
    --heading-color: #FFFFFF;
    --border-color: #00FFFF;
    --card-bg: rgba(30, 0, 50, 0.8);
    --card-border: 1px solid var(--primary-color);
    --font-poppins: 'Poppins', sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;
    --glitch-color-1: #00FFFF;
    --glitch-color-2: #FF00FF;
    --glitch-color-3: #FFFF00;
    --glitch-offset: 3px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-open-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-poppins);
    color: var(--heading-color);
    margin-bottom: 1rem;
}

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

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--primary-color);
}

.glitch-text {
    position: relative;
    display: inline-block;
    color: var(--heading-color);
    text-shadow: 0 0 5px var(--glitch-color-1);
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.glitch-text::before {
    left: -var(--glitch-offset);
    text-shadow: var(--glitch-offset) 0 var(--glitch-color-2);
}

.glitch-text::after {
    left: var(--glitch-offset);
    text-shadow: -var(--glitch-offset) 0 var(--glitch-color-3);
}

.glitch-text:hover::before {
    animation: glitch-anim-1 0.8s infinite alternate-reverse;
}

.glitch-text:hover::after {
    animation: glitch-anim-2 0.8s infinite alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(35px, 9999px, 11px, 0); transform: skew(0.5deg); }
    5% { clip: rect(44px, 9999px, 18px, 0); transform: skew(0.5deg); }
    10% { clip: rect(70px, 9999px, 44px, 0); transform: skew(0.5deg); }
    15% { clip: rect(80px, 9999px, 12px, 0); transform: skew(0.5deg); }
    20% { clip: rect(30px, 9999px, 34px, 0); transform: skew(0.5deg); }
    25% { clip: rect(98px, 9999px, 86px, 0); transform: skew(0.5deg); }
    30% { clip: rect(62px, 9999px, 78px, 0); transform: skew(0.5deg); }
    35% { clip: rect(20px, 9999px, 30px, 0); transform: skew(0.5deg); }
    40% { clip: rect(40px, 9999px, 10px, 0); transform: skew(0.5deg); }
    45% { clip: rect(75px, 9999px, 50px, 0); transform: skew(0.5deg); }
    50% { clip: rect(25px, 9999px, 65px, 0); transform: skew(0.5deg); }
    55% { clip: rect(90px, 9999px, 15px, 0); transform: skew(0.5deg); }
    60% { clip: rect(5px, 9999px, 70px, 0); transform: skew(0.5deg); }
    65% { clip: rect(100px, 9999px, 20px, 0); transform: skew(0.5deg); }
    70% { clip: rect(15px, 9999px, 85px, 0); transform: skew(0.5deg); }
    75% { clip: rect(55px, 9999px, 40px, 0); transform: skew(0.5deg); }
    80% { clip: rect(88px, 9999px, 30px, 0); transform: skew(0.5deg); }
    85% { clip: rect(48px, 9999px, 75px, 0); transform: skew(0.5deg); }
    90% { clip: rect(10px, 9999px, 95px, 0); transform: skew(0.5deg); }
    95% { clip: rect(60px, 9999px, 5px, 0); transform: skew(0.5deg); }
    100% { clip: rect(0, 9999px, 0, 0); transform: skew(0.5deg); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(11px, 9999px, 35px, 0); transform: skew(-0.5deg); }
    5% { clip: rect(18px, 9999px, 44px, 0); transform: skew(-0.5deg); }
    10% { clip: rect(44px, 9999px, 70px, 0); transform: skew(-0.5deg); }
    15% { clip: rect(12px, 9999px, 80px, 0); transform: skew(-0.5deg); }
    20% { clip: rect(34px, 9999px, 30px, 0); transform: skew(-0.5deg); }
    25% { clip: rect(86px, 9999px, 98px, 0); transform: skew(-0.5deg); }
    30% { clip: rect(78px, 9999px, 62px, 0); transform: skew(-0.5deg); }
    35% { clip: rect(30px, 9999px, 20px, 0); transform: skew(-0.5deg); }
    40% { clip: rect(10px, 9999px, 40px, 0); transform: skew(-0.5deg); }
    45% { clip: rect(50px, 9999px, 75px, 0); transform: skew(-0.5deg); }
    50% { clip: rect(65px, 9999px, 25px, 0); transform: skew(-0.5deg); }
    55% { clip: rect(15px, 9999px, 90px, 0); transform: skew(-0.5deg); }
    60% { clip: rect(70px, 9999px, 5px, 0); transform: skew(-0.5deg); }
    65% { clip: rect(20px, 9999px, 100px, 0); transform: skew(-0.5deg); }
    70% { clip: rect(85px, 9999px, 15px, 0); transform: skew(-0.5deg); }
    75% { clip: rect(40px, 9999px, 55px, 0); transform: skew(-0.5deg); }
    80% { clip: rect(30px, 9999px, 88px, 0); transform: skew(-0.5deg); }
    85% { clip: rect(75px, 9999px, 48px, 0); transform: skew(-0.5deg); }
    90% { clip: rect(95px, 9999px, 10px, 0); transform: skew(-0.5deg); }
    95% { clip: rect(5px, 9999px, 60px, 0); transform: skew(-0.5deg); }
    100% { clip: rect(0, 9999px, 0, 0); transform: skew(-0.5deg); }
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--primary-color);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--secondary-color);
}

.btn-secondary {
    background: var(--dark-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary-color);
}

.card {
    background-color: var(--card-bg);
    border: var(--card-border);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--primary-color);
}

.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

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

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

/* Hero Section */
.hero-section {
    background-image: url('static/media/vaporwave-ai-background.webp');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(26, 0, 51, 0.8) 100%);
    animation: gradient-animation 15s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-slide-up 1s ease-out forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--accent-color);
    opacity: 0;
    transform: translateY(20px);
    animation: fade-slide-up 1s ease-out forwards 0.8s;
}

.hero-section .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-slide-up 1s ease-out forwards 1.1s;
}

@keyframes fade-slide-up {
    to { opacity: 1; transform: translateY(0); }
}

/* About Section */
.about-section {
    background-color: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    box-shadow: 0 0 10px var(--primary-color);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.timeline-date {
    position: absolute;
    top: -10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

.timeline-item:nth-child(odd) .timeline-date {
    right: 10px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: 10px;
}

.timeline-icon {
    height: 40px;
    width: 40px;
    background-color: var(--secondary-color);
    position: absolute;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.5rem;
    box-shadow: 0 0 15px var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--secondary-color);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-content {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
    position: relative;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Offerings Section */
.offerings-section {
    background-color: var(--dark-bg);
}

.offering-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--light-bg);
}

.pricing-card {
    text-align: center;
    padding: 40px 20px;
    border: 2px solid var(--primary-color);
    background-color: var(--card-bg);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.7);
}

.pricing-card h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--accent-color);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-shadow: 0 0 15px var(--primary-color);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-card ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    text-align: left;
    /* justify-content: center; */
}

.pricing-card ul li i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.pricing-card ul li .bi-check-circle-fill {
    color: var(--primary-color);
}

.pricing-card ul li .bi-x-circle-fill {
    color: var(--secondary-color);
}

.pricing-card .btn {
    width: 100%;
    max-width: 200px;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
}

/* How AI Works Section */
.how-ai-works-section {
    background-color: var(--dark-bg);
}

.content-block {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.content-block.reverse-layout {
    flex-direction: row-reverse;
}

.content-block .text-content {
    flex: 1;
    min-width: 300px;
}

.content-block .image-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-block h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
    transition: transform 0.5s ease;
}

.glitch-effect-on-scroll {
    position: relative;
    overflow: hidden;
}

.glitch-effect-on-scroll::before,
.glitch-effect-on-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glitch-effect-on-scroll::before {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" fill="%2300FFFF"><rect x="0" y="0" width="100%" height="2px"/><rect x="0" y="10px" width="100%" height="2px"/><rect x="0" y="20px" width="100%" height="2px"/></svg>') repeat-y;
    mix-blend-mode: overlay;
}

.glitch-effect-on-scroll::after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" fill="%23FF00FF"><rect x="0" y="5px" width="100%" height="2px"/><rect x="0" y="15px" width="100%" height="2px"/><rect x="0" y="25px" width="100%" height="2px"/></svg>') repeat-y;
    mix-blend-mode: screen;
}

.glitch-effect-on-scroll.is-visible::before,
.glitch-effect-on-scroll.is-visible::after {
    animation: glitch-image 1.5s infinite alternate-reverse;
    opacity: 0.5;
}

@keyframes glitch-image {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Advantages Section */
.advantages-section {
    background-color: var(--light-bg);
}

.advantage-card h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark-bg);
}

.testimonial-card {
    padding: 30px;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.testimonial-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-bg);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 255, 255, 0.1);
    color: var(--heading-color);
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background-color: rgba(0, 255, 255, 0.2);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.accordion-content.active {
    max-height: 200px; /* Adjust based on content */
    padding: 20px;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: var(--text-color);
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-tile {
    text-align: left;
    padding: 20px;
    background-color: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
}

.footer-tile h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 8px var(--primary-color));
}

.footer-tile p,
.footer-tile ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

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

.footer-tile a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

.footer-tile .bi-envelope-fill {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Modals */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--dark-bg);
    margin: auto;
    padding: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    position: relative;
    animation: modal-fade-in 0.3s ease-out;
}

@keyframes modal-fade-in {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-button {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: var(--accent-color);
    text-decoration: none;
}

.modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background-color: rgba(0, 255, 255, 0.05);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.modal .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
}

#thank-you-message {
    text-align: center;
    padding: 30px 0;
}

#thank-you-message h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

#thank-you-message p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.hidden {
    display: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 0, 51, 0.9);
    color: var(--text-color);
    padding: 20px 0;
    z-index: 1500;
    border-top: 1px solid var(--primary-color);
    box-shadow: 0 -5px 20px rgba(0, 255, 255, 0.2);
}

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

.cookie-banner-content p {
    flex: 1;
    margin: 0;
    min-width: 280px;
}

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

.cookie-banner-content a:hover {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

/* Cookie Settings Modal */
.cookie-category {
    margin-bottom: 15px;
    text-align: left;
}

.cookie-category label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: 10px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    transform: scale(1.3);
    margin-right: 10px;
    accent-color: var(--primary-color);
}

.cookie-category .category-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    margin-left: 30px;
}

#save-cookie-settings {
    margin-top: 30px;
}

/* General visibility classes for JS animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    .nav-links {
        display: none; /* Hide for smaller screens, could implement a hamburger menu */
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .timeline::after {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 10px !important;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: 27px;
        right: auto;
        top: -15px;
    }
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
        right: auto;
    }
    .content-block {
        flex-direction: column;
    }
    .content-block.reverse-layout {
        flex-direction: column;
    }
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .grid-3-cols {
        grid-template-columns: 1fr;
    }
    #advantages .grid-3-cols {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-tile {
        text-align: center;
    }
    .footer-tile ul {
        display: inline-block;
        text-align: left;
    }
    .footer-tile .bi-envelope-fill {
        margin-right: 5px;
    }
    .modal-content {
        padding: 20px;
    }
    .modal-content h3 {
        font-size: 1.5rem;
    }
    .close-button {
        font-size: 2rem;
        top: 5px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    .pricing-card .price {
        font-size: 2.5rem;
    }
    .accordion-header {
        font-size: 1rem;
        padding: 15px;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    .cookie-buttons .btn {
        width: 100%;
    }
}/* Wrapper styles for policy content */
.policyScopeWrap {
    max-width: 800px; /* Limit content width for readability */
    margin: 40px auto; /* Top/bottom margin, center horizontally */
    padding: 0 20px; /* Inner padding on sides to prevent content from touching edges */
    box-sizing: border-box; /* Include padding in element's total width and height */
}

/* Heading styles */
.policyScopeWrap h1 {
    font-size: 1.8em; /* Reduced H1 size */
    line-height: 1.2;
    margin-top: 1.5em; /* Space above heading */
    margin-bottom: 0.8em; /* Space below heading */
    font-weight: bold;
}

.policyScopeWrap h2 {
    font-size: 1.5em; /* Reduced H2 size */
    line-height: 1.2;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    font-weight: bold;
}

.policyScopeWrap h3 {
    font-size: 1.2em; /* Reduced H3 size */
    line-height: 1.3;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    font-weight: bold;
}

.policyScopeWrap h4 {
    font-size: 1.1em; /* Reduced H4 size */
    line-height: 1.4;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.policyScopeWrap h5 {
    font-size: 1em; /* Reduced H5 size, often used for sub-headings */
    line-height: 1.5;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    font-weight: bold;
}

/* Paragraph styles */
.policyScopeWrap p {
    font-size: 1em; /* Base paragraph font size */
    line-height: 1.6; /* Improved readability for body text */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.policyScopeWrap ul {
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 25px; /* Indent for bullet points */
    list-style-type: disc; /* Default bullet style */
}

/* List item styles */
.policyScopeWrap li {
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.6; /* Consistent line height for list items */
}
.section-title.glitch-text {
    display: block;
}