:root {
    --primary: #8B4513;
    --primary-dark: #5D2E0C;
    --secondary: #D2691E;
    --accent: #F4A460;
    --bg-light: #FFF8F0;
    --bg-dark: #2C1810;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    --border-color: #E8DDD4;
    --card-bg: #FFFFFF;
    --shadow: 0 4px 20px rgba(139, 69, 19, 0.12);
    --shadow-hover: 0 8px 30px rgba(139, 69, 19, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.ad-disclosure {
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
}

header {
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    align-items: center;
}

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

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

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

.nav-cta {
    background-color: var(--primary);
    color: var(--text-light) !important;
    padding: 10px 22px !important;
    border-radius: 25px;
    margin-left: 15px;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: var(--text-light);
    padding: 60px 0;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary);
}

.section {
    padding: 90px 0;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-alt {
    background-color: var(--card-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-dark .section-header h2 {
    color: var(--accent);
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    flex: 1;
    min-width: 300px;
    max-width: 370px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    height: 200px;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

.card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--border-color);
    min-height: 450px;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-dark);
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-dark);
}

.testimonial-author .info strong {
    display: block;
    color: var(--text-light);
}

.testimonial-author .info span {
    font-size: 14px;
    opacity: 0.7;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--text-light);
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: var(--text-light);
    color: var(--primary);
}

.cta-section .btn:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.contact-grid {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-muted);
}

.contact-form-wrapper {
    flex: 1;
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    background-color: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 17px;
}

footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.disclaimer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 25px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

.cookie-content a {
    color: var(--accent);
}

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

.cookie-buttons button {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: var(--primary);
    color: var(--text-light);
}

.cookie-accept:hover {
    background-color: var(--secondary);
}

.cookie-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: var(--text-light);
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: var(--text-light);
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.85;
    font-size: 18px;
}

.content-page {
    padding: 60px 0;
}

.content-page h2 {
    color: var(--primary);
    font-size: 28px;
    margin: 40px 0 20px;
}

.content-page h3 {
    color: var(--primary-dark);
    font-size: 22px;
    margin: 30px 0 15px;
}

.content-page p {
    margin-bottom: 18px;
    color: var(--text-muted);
}

.content-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.content-page li {
    margin-bottom: 10px;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 50px;
    color: var(--text-light);
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 15px;
}

.thanks-content .btn {
    margin-top: 25px;
}

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-row {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 18px;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-meta {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-item .icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
}

.meta-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 25px 30px;
    border-radius: 15px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-card .service-price {
    font-size: 32px;
    font-weight: 700;
}

.pricing-card .service-price span {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .about-grid,
    .contact-grid,
    .service-row,
    .service-row:nth-child(even) {
        flex-direction: column;
    }

    .about-image,
    .service-image {
        width: 100%;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--card-bg);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 17px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .card {
        min-width: 100%;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
