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

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

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

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

ul {
    list-style: none;
}

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

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

p {
    margin-bottom: 20px;
}
form .btn{
background-color: #fff;
color: #3A0202;
}
.btn {
    display: inline-block;
    background-color: #3A0202;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #3A0202;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #3A0202;
    color: #3A0202;
}

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

.btn-submit {
    width: 100%;
    font-size: 16px;
    padding: 12px;
}

/* Header */
header {
    background-color: #3A0202;
    color: white;
    padding: 15px 0;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
}

nav ul {
    display: flex;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./assets/1.png') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: left;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero p {
    max-width: 700px;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8f5f2;
}

.testimonials h2 {
    position: relative;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: #3A0202;
}

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

.testimonial-card {
    background-color: #3A0202;
    color: white;
    padding: 25px;
    border-radius: 5px;
    height: 100%;
}

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

.testimonial-card p {
    font-style: italic;
}

/* Strategy Section */
.strategy {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./assets/strategy-bg.jpg') no-repeat center center/cover;
    color: white;
}

.strategy h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.stat-box {
    flex: 1;
    min-width: 250px;
    margin: 15px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.stat-box h3 {
    font-size: 2rem;
    color: #3A0202;
    margin-bottom: 10px;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background-color: #f8f5f2;
}

.blog h2 {
    position: relative;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.blog h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: #3A0202;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    display: flex;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.blog-image {
    flex: 1;
    min-height: 250px;
    background: #ddd;
}

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

.blog-content {
    flex: 2;
    padding: 25px;
}

.blog-content h3 {
    color: #3A0202;
    margin-bottom: 15px;
}

.blog-post:nth-child(2),
.blog-post:nth-child(3) {
    flex-direction: column;
}

.blog-post:nth-child(2) .blog-content,
.blog-post:nth-child(3) .blog-content {
    background-color: #3A0202;
    color: white;
}

.blog-post:nth-child(2) h3,
.blog-post:nth-child(3) h3 {
    color: white;
}

.blog-post:nth-child(2) .btn,
.blog-post:nth-child(3) .btn {
    background-color: white;
    color: #3A0202;
}

.blog-post:nth-child(2) .btn:hover,
.blog-post:nth-child(3) .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact {
    padding: 60px 0;
    background-color: #3A0202;
}

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

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

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

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

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

/* Footer */
footer {
    background-color: #3A0202;
    color: white;
    padding: 30px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3A0202;
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .stat-box {
        min-width: 200px;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .blog-image {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}