* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #3f31dd;
    --secondary-color: #4b4b4b;
    --dark-bg: #1a1a1a;
    --light-bg: #ffffff;
    --text-color: #333333;
    --light-text: #ffffff;
    --border-radius: 4px;
    --card-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--light-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.logo img {
    height: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Button Styles */
.btn, .btn-text, .btn-cookie, .btn-full {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn:hover {
    background-color: #2a20a8;
    transform: translateY(-2px);
}

.btn .arrow {
    font-size: 18px;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.btn-text:hover::after {
    width: 100%;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 50px 0;
    border-radius: 0 0 20px 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    border-radius: var(--card-radius);
    max-width: 100%;
    height: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-bg);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
}

.service-card p {
    padding: 0 20px;
    flex-grow: 1;
    color: var(--secondary-color);
}

.service-card .btn-text {
    padding: 20px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-bg);
    border-radius: var(--card-radius);
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(63, 49, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 25px;
    height: 25px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Framework Section */
.framework {
    padding: 80px 0;
}

.framework-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.framework-text {
    flex: 2;
}

.framework-text h3 {
    margin-bottom: 30px;
    font-size: 1.4rem;
    line-height: 1.4;
}

.framework-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.step-content h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form {
    flex: 1;
    background-color: var(--dark-bg);
    padding: 30px;
    border-radius: var(--card-radius);
    color: var(--light-text);
}

.contact-form h3 {
    margin-bottom: 20px;
    text-align: center;
}

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .btn {
    background-color: var(--light-text);
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
}

.contact-form .btn:hover {
    background-color: #eaeaea;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    text-align: left;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-links img {
    width: 15px;
    height: 15px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--card-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

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

.btn-cookie {
    flex: 1;
    padding: 8px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    border: none;
}

#accept-cookies {
    background-color: var(--primary-color);
    color: var(--light-text);
}

#decline-cookies {
    background-color: #e0e0e0;
    color: var(--secondary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        padding: 20px 0;
    }

    .framework-content {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 20px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .features-grid {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    nav ul {
        gap: 15px;
        font-size: 0.9rem;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

.privacy{
    padding: 40px 0px;
}
.privacy h2{
    margin-bottom: 40px;
    font-size: 34px;
}