/* Base Styles */
:root {
    --primary-color:  #0B1632;;
    --secondary-color: #3949ab;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --white: #fff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

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

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

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.section-header h2 {
    font-size: 28px;
    color: var(--primary-color);
}

.section-header p {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
}

/* Header */
header {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .container{
    display: flex;
    justify-content: center;
}

.logo h1 {
    color: var(--white);
    font-size: 24px;
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--white);
}

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

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hero-content p:first-of-type {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-image {
    flex: 1;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #E9F4FF;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 18px;
    color: var(--primary-color);
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background-color: var(--white);
}

.solutions .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.solution-content {
    flex: 1;
}

.solution-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.solution-content p:first-of-type {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.solution-image {
    flex: 1;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.impact-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.impact-text {
    flex: 1;
}

.impact-image {
    flex: 1;
}

.impact .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Framework Section */
.framework {
    padding: 80px 0;
    background-color: var(--white);
}

.framework-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.framework-content p:first-of-type {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.framework .btn {
    margin-top: 20px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 18px;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-content {
    display: flex;
    gap: 30px;
  
}

.contact-form {
    flex: 2;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.btn-submit {
    background-color: var(--primary-color);
    width: 100%;
}

.contact-info {
    flex: 1;
}

.info-item {
    margin-bottom: 20px;
    background: #FFF;
    padding: 12px;
}

.info-item h3 {
    font-size: 18px;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

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

.footer-logo h3 {
    color: var(--white);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: var(--white);
    border-radius: 50%;
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-popup.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .solutions .container {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .service-image {
        height: auto;
    }

    .service-image img {
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 24px;
    }

    .hero-content h2,
    .solution-content h2,
    .framework-content h2 {
        font-size: 24px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

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