:root {
    --primary-color: #6c63ff;
    --secondary-color: #ff6b6b;
    --accent-color: #feca57;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #20bf6b;
    --info-color: #45aaf2;
    --warning-color: #fd9644;
    --danger-color: #fc5c65;
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --section-padding: 80px 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

a {
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

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

.btn {
    border-radius: var(--border-radius);
    padding: 10px 24px;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all var(--transition-speed) ease;
    z-index: -1;
}

.btn:hover:after {
    height: 100%;
}

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

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.section-padding {
    padding: var(--section-padding);
}

.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.section-title:hover h2:after {
    width: 100%;
}

.section-title p {
    font-size: 18px;
    color: var(--gray-color);
}

.navbar {
    padding: 15px 0;
    transition: all var(--transition-speed) ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
}

.navbar-brand img {
    height: 40px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    outline: none;
}

.navbar-toggler-icon {
    color: var(--primary-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 15px;
    position: relative;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
    width: 80%;
}

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

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        z-index: 1000;
        transition: all var(--transition-speed) ease;
        overflow-y: auto;
        padding: 60px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse.show {
        right: 0;
    }

    .side-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }

    .side-menu-overlay.show {
        display: block;
    }

    .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-nav .nav-link:before {
        left: 0;
        transform: none;
    }

    .navbar-nav .nav-link:hover:before,
    .navbar-nav .nav-link.active:before {
        width: 30px;
    }
}

.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(254, 202, 87, 0.2);
    z-index: 0;
}

.hero-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(108, 99, 255, 0.2);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.features-section {
    position: relative;
    overflow: hidden;
}

.features-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    z-index: -1;
}

.feature-item {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: #fff;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary-color);
    transition: all var(--transition-speed) ease;
    z-index: -1;
}

.feature-item:hover:before {
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition-speed) ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.feature-item:hover .feature-icon i {
    color: #fff;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.solutions-section {
    background-color: #fff;
}

.solutions-tabs .nav-tabs {
    border: none;
    margin-bottom: 30px;
    justify-content: center;
}

.solutions-tabs .nav-tabs .nav-item {
    margin: 0 5px;
}

.solutions-tabs .nav-tabs .nav-link {
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-weight: 500;
    color: var(--dark-color);
    background-color: rgba(108, 99, 255, 0.1);
    transition: all var(--transition-speed) ease;
}

.solutions-tabs .nav-tabs .nav-link.active,
.solutions-tabs .nav-tabs .nav-link:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.solution-item {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: #fff;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.solution-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.solution-item p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.solution-item .btn-link {
    color: var(--primary-color);
    padding: 0;
    font-weight: 500;
}

.solution-item .btn-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.testimonials-section {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.testimonial-item {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: #fff;
    box-shadow: var(--box-shadow);
    margin: 15px;
    position: relative;
}

.testimonial-item:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(108, 99, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--gray-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author-info p {
    color: var(--gray-color);
    margin-bottom: 0;
    font-size: 14px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.testimonial-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    margin: 0 5px;
    transition: all var(--transition-speed) ease;
}

.testimonial-carousel .owl-nav button:hover {
    background-color: var(--primary-color);
}

.testimonial-carousel .owl-nav button span {
    font-size: 24px;
    line-height: 1;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.testimonial-carousel .owl-nav button:hover span {
    color: #fff;
}

.about-section {
    position: relative;
    overflow: hidden;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-image:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.about-list li i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 5px;
}

.stats-item {
    text-align: center;
    margin-bottom: 30px;
}

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stats-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.stats-item h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stats-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.contact-section {
    background-color: #fff;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.contact-info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info-content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.contact-form {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

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

.form-control {
    height: 50px;
    border-radius: var(--border-radius);
    border: 1px solid #e9ecef;
    padding: 10px 15px;
    font-size: 16px;
    transition: all var(--transition-speed) ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

textarea.form-control {
    height: 120px;
    resize: none;
}

.map-container {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    background-color: var(--dark-color);
    color: #fff;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
}

.footer-logo img {
    height: 40px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-speed) ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-contact p i {
    color: var(--primary-color);
    margin-right: 10px;
}

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

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.author-image img {
    border-radius: 10px;
    margin-right: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    transition: all var(--transition-speed) ease;
}

.solution-features i {
    color: var(--primary-color);
    font-size: 20px;
    margin: 10px 5px 10px 0;
}

.contact-item {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 5px;
}

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

.fLogo {
    background: white;
    border-radius: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 999;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp var(--transition-speed) ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner p {
    margin-bottom: 0;
}

.privacy-section {
    padding: 150px 0 80px;
}

.privacy-header {
    margin-bottom: 40px;
    text-align: center;
}

.privacy-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-header p {
    color: var(--gray-color);
}

.privacy-section-item {
    margin-bottom: 40px;
}

.privacy-section-item h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.privacy-section-item p {
    margin-bottom: 15px;
}

.privacy-section-item ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-section-item ul li {
    margin-bottom: 10px;
}

@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-section {
        padding: 150px 0 80px;
    }

    .hero-content {
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .section-title h2 {
        font-size: 28px;
    }

    .about-image {
        margin-bottom: 40px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .stats-item {
        margin-bottom: 40px;
    }

    .contact-info {
        margin-bottom: 40px;
    }

    .footer-top {
        padding: 60px 0 20px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        padding: 130px 0 60px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title p {
        font-size: 16px;
    }

    .feature-item {
        padding: 20px;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .stats-item h3 {
        font-size: 30px;
    }

    .contact-form {
        padding: 20px;
    }

    .map-container {
        height: 250px;
    }

    .footer-top {
        padding: 40px 0 10px;
    }

    .copyright {
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-bottom-links {
        text-align: center !important;
    }

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

    .privacy-header h1 {
        font-size: 30px;
    }

    .privacy-section-item h2 {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .privacy-header h1 {
        font-size: 26px;
    }

    .privacy-section-item h2 {
        font-size: 20px;
    }
}