/* Base styles */
:root {
    --primary-color: #1e5aff;
    --primary-dark: #0049ff;
    --secondary-color: #4CAF50;
    --dark-bg: #121830;
    --darker-bg: #0a0e1a;
    --light-bg: #1e263e;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-bg);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 30px;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

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

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

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

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

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

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

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

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-center {
    text-align: center;
    margin-top: 30px;
}

/* Header */
header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

nav ul {
    display: flex;
}

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

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

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

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

/* Advantages Section */
.advantages {
    background-color: var(--darker-bg);
    padding: 60px 0 80px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 25px;
}

.advantage-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.advantages-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.people-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.blue-icon {
    background-color: var(--primary-color);
}

.green-icon {
    background-color: var(--secondary-color);
}

.icon img {
    width: 24px;
    height: 24px;
}

/* About Section */
.about {
    background-color: var(--dark-bg);
    padding: 60px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-text {
    flex: 3;
}

.about-image {
    flex: 2;
    margin-top: 20px;
}

.about-image img {
    border-radius: 8px;
    width: 100%;
}

.stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 30px 0;
}

.stat {
    text-align: left;
}

.stat h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1;
}

.stat p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.3;
}

/* Services Section */
.services {
    background-color: var(--darker-bg);
    padding: 60px 0 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
}

.service-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 25px;
    height: 100%;
}

.service-card:first-child {
    padding: 0;
    overflow: hidden;
}

.service-image {
    height: 100%;
}

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

/* Contact Section */
.contact {
    background-color: var(--dark-bg);
    padding: 60px 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

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

.contact-info p {
    margin-bottom: 5px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

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

input, textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: none;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.footer-copyright {
    margin-top: 5px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

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

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        flex-direction: column-reverse;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .advantages-grid, .services-grid {
        grid-template-columns: 1fr;
    }

    .advantages-content {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .stats {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .stat {
        flex-basis: 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    section {
        padding: 50px 0;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .stat {
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}