/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0a0a4a;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, #2de2c9, #f9e54e);
    color: #000;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

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

/* Header */
header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0a4a;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #2de2c9;
}

.header-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    font-size: 0.8rem;
}

.header-links a {
    color: #555;
}

.header-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #0a0a4a;
    color: #fff;
    padding: 60px 0;
    border-radius: 20px;
    margin: 20px auto;
    max-width: 1240px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
}

/* Why Us Section */
.why-us {
    padding: 60px 0;
}

.why-us-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.why-us-text {
    flex: 1;
}

.why-us-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

/* Numbers Section */
.numbers {
    padding: 60px 0;
    text-align: center;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.number-card {
    background-color: #0a0a4a;
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
}

.number-card h3 {
    font-size: 2.5rem;
    color: #2de2c9;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background-color: #0a0a4a;
    color: #fff;
    padding: 60px 0;
}

.services h2 {
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    padding: 20px;
    position: relative;
}

.arrow-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: #f5f5f7;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

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

.testimonial-card h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background-color: #0a0a4a;
    color: #fff;
    padding: 60px 0;
}

.contact h2 {
    color: #fff;
}

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

.contact-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    width: 100%;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #f5f5f7;
    font-family: 'Raleway', sans-serif;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0a4a;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #777;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #f9e54e, #2de2c9);
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    text-align: center;
}

.cookie-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.cookie-btn {
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
}

.cookie-btn.dark {
    background-color: #000;
    color: #fff;
}

.cookie-btn.light {
    background-color: transparent;
    border: 1px solid #000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .why-us-content {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-popup {
        width: 90%;
    }
}

html {
    scroll-behavior: smooth;
}

.main-section {
    padding: 80px 0px;
}