:root {
    --primary-color: #FF6B00; /* Neon Orange */
    --secondary-color: #8A2BE2; /* Violet */
    --dark-blue: #1A0033;
    --dark-violet: #330066;
    --text-light: #F0F0F0;
    --text-dark: #333333;
    --bg-gradient-dark: linear-gradient(to right, var(--dark-blue), var(--dark-violet), var(--secondary-color));
    --bg-gradient-light: linear-gradient(to right, #f8f9fa, #e9ecef);
    --card-bg-dark: rgba(255, 255, 255, 0.08);
    --card-bg-light: #FFFFFF;
    --border-color: rgba(255, 255, 255, 0.2);
    --overlay-color: rgba(0, 0, 0, 0.7);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    background-color: var(--dark-blue);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    font-weight: 600;
}

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

a:hover {
    color: var(--secondary-color);
}

.btn {
    font-weight: 500;
    border-radius: 50px;
    padding: 10px 30px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFF;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-secondary {
    color: var(--text-light);
    border-color: var(--border-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #FFF;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* Header & Navigation */
.main-header {
    padding: 15px 0;
    transition: background-color 0.4s ease-in-out;
    z-index: 1030;
}

.main-header.scrolled {
    background-color: var(--dark-violet) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
}

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

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

.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 107, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.main-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.main-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    opacity: 0.9;
}

/* About Section (Timeline) */
.about-section {
    background-color: var(--dark-violet);
}

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

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

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    z-index: 1;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: var(--dark-violet);
    border: 4px solid var(--secondary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

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

.timeline-item:nth-child(even)::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--card-bg-dark);
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.timeline-date {
    position: absolute;
    top: 22px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #FFF;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    top: 15px;
    z-index: 2;
    border: 2px solid var(--primary-color);
}

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

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

/* Services & Advantages Sections */
.services-section, .advantages-section {
    background: var(--bg-gradient-dark);
}

.service-card, .advantage-card {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-icon, .advantage-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-title, .advantage-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-description, .advantage-description {
    color: var(--text-light);
    opacity: 0.8;
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--dark-blue);
}

.portfolio-card {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.portfolio-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.portfolio-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.portfolio-content p {
    color: var(--text-light);
    opacity: 0.8;
}

/* Team Section */
.team-section {
    background: var(--bg-gradient-dark);
}

.founder-card {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    align-items: center;
}

.founder-img, .member-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.founder-name, .member-name {
    font-size: 1.7rem;
    color: var(--primary-color);
}

.founder-role, .member-role {
    color: var(--secondary-color);
    font-weight: 500;
}

.team-member-card {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

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

.faq-questions-list {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
}

.question-item {
    display: block;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 10px;
    font-size: 1.1rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.question-item:last-child {
    border-bottom: none;
}

.question-item:hover, .question-item.active {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.faq-answers-display {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.answer-content {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

.answer-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative; /* Keep active content in flow */
}

.answer-content h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.answer-content p {
    color: var(--text-light);
    opacity: 0.9;
}

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

.testimonial-card {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.bg-secondary-alt {
    background-color: rgba(138, 43, 226, 0.15) !important;
}

.bg-primary-alt {
    background-color: rgba(255, 107, 0, 0.15) !important;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 0;
}

.testimonial-author-role {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-blue);
}

.contact-form, .contact-info-sidebar {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 8px;
    padding: 10px 15px;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.25);
    color: var(--text-light);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.invalid-feedback {
    color: var(--primary-color);
}

.contact-info-sidebar h3 {
    color: var(--primary-color);
}

.contact-item {
    color: var(--text-light);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.embedded-map iframe {
    border-radius: 8px;
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-blue) !important;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-section h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-section .input-email {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-light);
}

.footer-section .input-email:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.25);
}

.footer-link {
    color: var(--text-light);
    display: block;
    padding: 5px 0;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-logo-wrapper .logo {
    height: 35px;
    width: auto;
}

.footer-logo-wrapper .site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.copyright-text {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 15px;
}

/* Cookie Consent Modal */
#cookieConsentModal .modal-content {
    background-color: var(--dark-violet);
    color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

#cookieConsentModal .modal-header {
    border-bottom: 1px solid var(--border-color);
}

#cookieConsentModal .modal-title {
    color: var(--primary-color);
}

#cookieConsentModal .modal-footer {
    border-top: 1px solid var(--border-color);
}

#cookieConsentModal .form-check-label {
    color: var(--text-light);
}

#cookieConsentModal .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-policy-link {
    color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--dark-violet);
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .nav-link {
        margin: 5px 0;
        text-align: center;
    }

    .nav-link::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .btn-cta {
        width: 100%;
        margin-top: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .timeline-container::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 15px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(even)::after {
        left: 15px;
    }

    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: 70px;
        right: auto;
        text-align: left;
    }

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

    .founder-card {
        flex-direction: column;
    }

    .founder-img {
        margin-bottom: 15px !important;
        margin-right: 0 !important;
    }

    .faq-questions-list {
        margin-bottom: 30px;
    }

    .answer-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
    }

    .faq-answers-display .answer-content:not(.active) {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .footer-section .newsletter-block, .footer-section .links-block, .footer-section .logo-copyright-block {
        text-align: center;
    }

    .footer-section .d-flex {
        justify-content: center;
    }

    .footer-logo-wrapper {
        justify-content: center;
    }
}/* Parent container styling */
.policyScopeWrap {
    padding-top: 20px; /* Top padding for the content area */
    padding-left: 20px; /* Left padding for the content area */
    padding-right: 20px; /* Right padding for the content area */
    /* Optional: Add max-width and margin: 0 auto for centering on larger screens if needed */
    /* max-width: 800px; */
    /* margin: 0 auto; */
}

/* Heading 1 styles */
.policyScopeWrap h1 {
    font-size: 28px; /* Moderate font size for main headings */
    margin-top: 30px; /* Space above the heading */
    margin-bottom: 15px; /* Space below the heading */
    font-weight: 600; /* Slightly bolder than normal */
    line-height: 1.2; /* Line height for readability */
}

/* Heading 2 styles */
.policyScopeWrap h2 {
    font-size: 24px; /* Moderate font size for sub-headings */
    margin-top: 25px; /* Space above the heading */
    margin-bottom: 12px; /* Space below the heading */
    font-weight: 600; /* Slightly bolder than normal */
    line-height: 1.2; /* Line height for readability */
}

/* Heading 3 styles */
.policyScopeWrap h3 {
    font-size: 20px; /* Moderate font size for tertiary headings */
    margin-top: 20px; /* Space above the heading */
    margin-bottom: 10px; /* Space below the heading */
    font-weight: 600; /* Slightly bolder than normal */
    line-height: 1.3; /* Line height for readability */
}

/* Heading 4 styles */
.policyScopeWrap h4 {
    font-size: 18px; /* Moderate font size for quaternary headings */
    margin-top: 18px; /* Space above the heading */
    margin-bottom: 8px; /* Space below the heading */
    font-weight: 600; /* Slightly bolder than normal */
    line-height: 1.3; /* Line height for readability */
}

/* Heading 5 styles */
.policyScopeWrap h5 {
    font-size: 16px; /* Standard font size, but bold for emphasis */
    margin-top: 15px; /* Space above the heading */
    margin-bottom: 5px; /* Space below the heading */
    font-weight: 600; /* Bold font weight */
    line-height: 1.4; /* Line height for readability */
}

/* Paragraph styles */
.policyScopeWrap p {
    font-size: 16px; /* Standard body text font size */
    margin-bottom: 1em; /* Space below the paragraph */
    line-height: 1.6; /* Line height for readability */
}

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

/* List item styles */
.policyScopeWrap li {
    font-size: 16px; /* Standard font size for list items */
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.6; /* Line height for readability */
}
