/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f7;
}

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

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

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

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

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

section {
    padding: 80px 0;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #f3cf4d;
    color: #333;
}

.btn-primary:hover {
    background-color: #e8c343;
}

.btn-text {
    background-color: transparent;
    color: #333;
}

.btn-text:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    padding: 15px;
}

/* Header */
.header {
    background-color: #fff;
    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: 20px 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
}

.nav-links a:hover {
    color: #b264f5;
}

/* Hero Section */
.hero {
    background-color: #182635;
    color: #fff;
    padding: 100px 0;
}

.hero-content {
    max-width: 800px;
}

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

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

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

.about-text {
    flex: 1;
}

.about-item {
    display: flex;
    margin-bottom: 30px;
}

.about-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.about-icon-red {
    background-color: #ff7979;
}

.about-icon-yellow {
    background-color: #f3cf4d;
}

.about-icon-green {
    background-color: #4ecdc4;
}

/* Statistics Section */
.statistics {
    background-color: #182635;
    color: #fff;
}

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

.stat-item {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-item:nth-child(1) h3 {
    color: #f3cf4d;
}

.stat-item:nth-child(2) h3 {
    color: #4ecdc4;
}

.stat-item:nth-child(3) h3 {
    color: #ff7979;
}

/* Services Section */
.services-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.service-item {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.service-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-item:nth-child(1) .service-number {
    background-color: #ff7979;
    color: white;
}

.service-item:nth-child(2) .service-number {
    background-color: #4ecdc4;
    color: white;
}

.service-item:nth-child(3) .service-number {
    background-color: #f3cf4d;
    color: white;
}

/* Blog Section */
.blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.blog-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.blog-item {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.blog-item h3, .blog-item p, .blog-item a {
    padding: 0 20px;
}

.blog-item h3 {
    margin-top: 20px;
}

.blog-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-link {
    display: inline-block;
    color: #b264f5;
    font-weight: 600;
    margin: 20px 0;
}

/* Testimonials Section */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-item {
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.testimonial-item p:first-child {
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    text-align: right;
}

.testimonial-red {
    border-left: 4px solid #ff7979;
}

.testimonial-green {
    border-left: 4px solid #4ecdc4;
}

.testimonial-purple {
    border-left: 4px solid #b264f5;
}

.testimonial-yellow {
    border-left: 4px solid #f3cf4d;
}

/* Contact Section */
.contact {
    background-color: #f5f5f7;
}

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

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.phone-group {
    display: flex;
    align-items: center;
}

.country-code {
    display: flex;
    align-items: center;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    background-color: #f9f9f9;
    height: 49px;
}

.flag-icon {
    width: 20px;
    margin-right: 5px;
}

.phone-group input {
    border-radius: 0 4px 4px 0;
    border-left: none;
}

/* Footer */
.footer {
    background-color: #182635;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

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

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

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

.cookie-content {
    padding: 20px;
}

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

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

/* Thank You Popup */
.thank-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 400px;
    display: none;
}

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

.thank-content {
    padding: 30px;
    text-align: center;
}

.thank-content h3 {
    color: #b264f5;
}

.thank-content .btn {
    margin-top: 20px;
}

/* Media Queries */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .services-container,
    .blog-container {
        flex-direction: column;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0 15px 10px;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

html {
    scroll-behavior: smooth;
}

.main-section h1 {
    text-align: center;
    text-transform: uppercase;
}