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

:root {
    --primary-color: #d4a574;
    --secondary-color: #2c2c2c;
    --accent-color: #8b6f47;
    --light-bg: #faf8f5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 30px;
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-card {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

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

.hero-text-card {
    flex: 1;
}

.hero-text-card h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-text-card p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hero-image-card {
    flex: 1;
}

.hero-image-card img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.features-cards {
    padding: 80px 0;
    background: var(--white);
}

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

.feature-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 15px;
}

.services-preview {
    padding: 80px 0;
    background: var(--light-bg);
}

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

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

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-cards {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.testimonial-cards h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.stars {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.author {
    font-weight: 600;
    color: var(--secondary-color);
}

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

.cta-content h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 40px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.form-card > p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.info-cards {
    padding: 60px 0;
    background: var(--white);
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 15px;
    text-align: center;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.info-card p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--accent-color);
}

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

.btn-reject:hover {
    border-color: var(--white);
}

.page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-hero p {
    font-size: 20px;
    color: var(--text-gray);
}

.about-content {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text-card {
    flex: 1;
}

.about-text-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.about-text-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-image-card {
    flex: 1;
}

.about-image-card img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.values-section {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.team-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-intro {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
}

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

.team-card {
    flex: 0 1 300px;
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 30px;
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 22px;
    margin: 20px 0 5px;
    color: var(--secondary-color);
}

.team-card p {
    color: var(--text-gray);
    padding: 0 20px;
    margin-bottom: 5px;
}

.bio {
    font-size: 14px;
    font-style: italic;
}

.mission-card {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.services-detail {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
}

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

.pricing-note {
    padding: 60px 0;
    background: var(--light-bg);
}

.note-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.note-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.note-card p {
    color: var(--text-gray);
    margin-bottom: 10px;
    font-size: 16px;
}

.cta-simple {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.cta-simple p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-content {
    padding: 80px 0;
    background: var(--white);
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 50px 40px;
    background: var(--light-bg);
    border-radius: 15px;
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 10px;
    font-size: 16px;
}

.note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-gray);
    opacity: 0.8;
}

.map-section {
    padding: 60px 0;
    background: var(--light-bg);
    text-align: center;
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--white);
    border-radius: 15px;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.map-info {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.map-directions {
    text-align: left;
    max-width: 500px;
    margin: 20px auto 0;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    line-height: 1.8;
}

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--secondary-color);
}

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

.faq-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
}

.faq-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.faq-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

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

.cta-contact h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-contact p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.thanks-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
}

.next-steps h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-reminder {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.contact-reminder p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.legal-page {
    padding: 60px 0;
    background: var(--white);
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.update-date {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .hero-grid,
    .about-card-layout,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-text-card h1 {
        font-size: 36px;
    }

    .section-header h2,
    .testimonial-cards h2,
    .values-section h2,
    .team-section h2 {
        font-size: 32px;
    }

    .service-card {
        min-width: 100%;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .form-card {
        padding: 30px 20px;
    }

    .thanks-card {
        padding: 40px 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

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

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

    .cards-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .feature-card,
    .value-card,
    .faq-card {
        min-width: 100%;
    }
}