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

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: linear-gradient(135deg, #C5A572, #B8960B);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    color: white;
}

.cookie-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.cookie-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cookie-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.cookie-btn.reject {
    background: white;
    color: #B8960B;
}

.cookie-btn.accept {
    background: #8B4513;
    color: white;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo h2 {
    color: #C5A572;
    font-weight: 700;
    font-size: 1.8rem;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #C5A572;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.hero-image {
    order: 1;
}

.hero-text {
    order: 2;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #C5A572, #B8960B);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 165, 114, 0.4);
}

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

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

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.about-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    background: linear-gradient(135deg, #C5A572, #B8960B);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.service-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-content {
    flex: 1;
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.service-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border: 2px solid #C5A572;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(197, 165, 114, 0.2);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-style: italic;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-image {
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input {
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #C5A572, #B8960B);
    color: white;
    font-weight: 500;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.form-submit {
    background: linear-gradient(135deg, #8B6914, #6B4E0A);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 105, 20, 0.4);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #C5A572;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #C5A572;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background: #1877f2;
    color: white;
}

.social-icon.twitter {
    background: #000;
    color: white;
}

.social-icon.linkedin {
    background: #0077b5;
    color: white;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }

    .hero-content,
    .about-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: 1;
    }

    .hero-text {
        order: 2;
    }

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

    .contact-image {
        border-radius: 20px 20px 0 0;
        height: 300px;
    }

    .contact-form-wrapper {
        border-radius: 0 0 20px 20px;
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 15px;
    }

    .navigation ul {
        gap: 1.5rem;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .about-text h2,
    .services h2,
    .faq h2,
    .cta-text h2,
    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }

    .service-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .service-icon {
        align-self: center;
    }

    .hero-image img,
    .about-image img,
    .cta-image img {
        height: 250px;
    }

    .contact-image img {
        min-height: 250px;
    }

    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .cookie-content h3 {
        font-size: 2rem;
    }

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

    .cookie-btn {
        min-width: auto;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .about-text h2,
    .services h2,
    .faq h2,
    .cta-text h2,
    .contact-form-wrapper h2 {
        font-size: 1.4rem;
    }

    .hero-text p,
    .about-text p,
    .cta-text p {
        font-size: 0.95rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form input,
    .form-submit {
        padding: 15px 20px;
    }

    .navigation ul {
        gap: 1rem;
    }

    .navigation a {
        font-size: 0.9rem;
    }
}

/* Service item structure fix */
.service-item {
    display: block;
    text-align: left;
}

.service-item .service-icon {
    margin-bottom: 1rem;
}

@media (min-width: 769px) {
    .service-item {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .service-item .service-icon {
        margin-bottom: 0;
        margin-top: 0.2rem;
    }
}