body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

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

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

.section-title h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #4e73df;
}

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3a5ccc;
    border-color: #3a5ccc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
}

.btn-outline-primary {
    color: #4e73df;
    border-color: #4e73df;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #4e73df;
    border-color: #4e73df;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
}

header {
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.navbar {
    padding: 15px 0;
}

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

.brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: #4e73df;
}

.navbar-light .navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #4e73df;
}

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

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

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        padding: 20px;
        background-color: #fff;
        z-index: 1000;
        transition: all 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-collapse.show {
        right: 0;
    }
    
    .navbar-nav {
        margin-top: 30px;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }
}

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

.cookie-alert.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

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

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

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

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

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

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.hero-shape svg {
    width: 100%;
    height: auto;
}

.features-section {
    position: relative;
    background-color: #fff;
}

.feature-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(78, 115, 223, 0.1);
    border-radius: 50%;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 30px;
    color: #4e73df;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
}

.solutions-section {
    position: relative;
    background-color: #f8f9fa;
}

.solution-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.solution-image {
    position: relative;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-content {
    padding: 25px;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.solution-description {
    color: #666;
    margin-bottom: 20px;
}

.testimonials-section {
    position: relative;
    background-color: #fff;
}

.testimonial-card {
    height: 100%;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 60px;
    color: #4e73df;
    position: absolute;
    left: 0;
    top: -20px;
    font-family: Georgia, serif;
}

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

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

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

.testimonial-author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author-info p {
    color: #666;
    margin-bottom: 0;
}

.faq-section {
    position: relative;
    background-color: #f8f9fa;
}

.accordion .card {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion .card-header {
    padding: 0;
    background-color: #fff;
    border-bottom: none;
}

.accordion .btn-link {
    width: 100%;
    text-align: left;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    padding: 20px;
    position: relative;
}

.accordion .btn-link:hover, .accordion .btn-link:focus {
    text-decoration: none;
    box-shadow: none;
}

.accordion .btn-link:after {
    content: '▲';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.accordion .btn-link.collapsed:after {
    transform: translateY(-50%) rotate(-180deg);
}

.accordion .card-body {
    padding: 0 20px 20px;
    color: #666;
}

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

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

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
}

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

.contact-info-icon i {
    font-size: 20px;
    color: #4e73df;
}

.contact-info-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-content p {
    color: #666;
    margin-bottom: 0;
}

.contact-form .form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    padding: 10px 15px;
    margin-bottom: 20px;
}

.contact-form textarea.form-control {
    height: 150px;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: #4e73df;
}

.features-section, .solutions-section, .testimonials-section, .faq-section, .contact-section {
    padding: 50px 0;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.footer {
    background-color: #2c3e50;
    color: #fff;
    position: relative;
}

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

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

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

.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #4e73df;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
    padding-left: 5px;
}

.footer-newsletter .form-control {
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
}

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

.footer-newsletter .form-control:focus {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-newsletter .btn {
    height: 45px;
    padding: 0 20px;
}

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

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

.footer-bottom-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: flex-end;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
    text-decoration: none;
}

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

.privacy-content {
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-section-item h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.privacy-section-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #333;
}

.privacy-section-item p, .privacy-section-item ul {
    color: #666;
}

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

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

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

.contact-list li {
    margin-bottom: 10px;
    color: #666;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.parallax-shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background-color: #4e73df;
    border-radius: 50%;
    animation: float-slow 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-color: #f6c23e;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.shape-3 {
    top: 50%;
    right: 10%;
    width: 150px;
    height: 150px;
    background-color: #1cc88a;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float-slow 12s ease-in-out infinite;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, 20px) rotate(5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .privacy-content {
        padding: 30px;
    }
    
    .footer-top {
        padding: 60px 0 30px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .footer-bottom-links li {
        margin: 0 10px;
    }
}

@media (max-width: 575.98px) {
    .navbar {
        padding: 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .feature-card, .solution-card, .testimonial-card {
        padding: 20px;
    }
    
    .contact-form, .map-container {
        margin-top: 30px;
    }
}