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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #B8834A;
    color: white;
}

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

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    z-index: 1000;
    border: 1px solid #ddd;
}

.cookie-content h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #B8834A;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
}

.cookie-consent.hidden {
    display: none;
}

/* Header */
.header {
    background-color: #B8834A;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.logo h1 {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #f0f0f0;
}

/* Burger Menu */
.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: white;
    color: black;
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Services Section */
.services {
   background: url(./img/b1.png) no-repeat center/cover;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #F5D89A;
}

.services > p {
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.service-item {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.service-item h3 {
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #f8f9fa;
    background: url(./img/b2.png) no-repeat center/cover;
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: white;
}

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

.benefit-item {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon img {
    width: 60px;
    height: 60px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

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

.blog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.blog-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.blog-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
}

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

.blog-text h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.blog-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.blog-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.blog-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    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: 5px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #B8834A;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

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

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

.footer-logo h3 {
    font-size: 24px;
    font-weight: bold;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f0f0f0;
}

/* Thank You Page */
.thank-you {
    padding: 120px 0;
    background-color: white;
    text-align: center;
    min-height: 60vh;
}

.thank-you-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.thank-you-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.form-group.focused input {
    border-color: #B8834A;
    box-shadow: 0 0 0 2px rgba(184, 131, 74, 0.2);
}

.header {
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        background-color: #B8834A;
        transition: left 0.3s ease;
        padding: 20px 0;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .blog-item {
        flex-direction: column;
        text-align: center;
    }

    .blog-image {
        width: 100%;
        height: 200px;
    }

    .thank-you-content h2 {
        font-size: 36px;
    }

    .cookie-consent {
        position: fixed;
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        transform: none;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }

    .services h2,
    .about-text h2,
    .benefits h2 {
        font-size: 28px;
    }

    .blog-info h2 {
        font-size: 24px;
    }

    .thank-you-content h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px;
    }

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