:root {
    --primary: #b8a9c9;
    --secondary: #f5e6e8;
    --accent: #d4a5a5;
    --dark: #4a4a4a;
    --light: #faf8f5;
    --text: #3d3d3d;
    --muted: #8a8a8a;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

.header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
    padding: 15px 0;
    position: relative;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
}

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

.ad-disclosure {
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

.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(--secondary);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-left: 8%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 0 40px 0 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

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

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--secondary);
}

.section-title {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.asymmetric-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

.asymmetric-intro .text-block {
    flex: 1;
    padding-right: 40px;
}

.asymmetric-intro .image-block {
    flex: 0 0 45%;
    position: relative;
}

.asymmetric-intro .image-block img {
    border-radius: 20px 0 20px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.offset-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    padding: 25px 35px;
    border-radius: 0 20px 0 20px;
    color: white;
}

.offset-box span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 0 calc(33.333% - 20px);
    max-width: 380px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

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

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

.service-card .card-content {
    padding: 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.price-note {
    font-size: 0.8rem;
    color: var(--muted);
}

.staggered-layout {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.staggered-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.staggered-item .content {
    flex: 1;
}

.staggered-item .visual {
    flex: 0 0 50%;
    position: relative;
}

.staggered-item .visual img {
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.feature-list {
    list-style: none;
    margin-top: 25px;
}

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

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: white;
    color: var(--accent);
}

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

.testimonials {
    background: var(--light);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    position: relative;
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    color: var(--secondary);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    padding-top: 30px;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 0 0 40%;
}

.contact-form-wrapper {
    flex: 1;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info-block p {
    color: var(--muted);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

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

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

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

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

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

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

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

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

.footer-col a:hover {
    color: white;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

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

.footer-links a {
    color: rgba(255,255,255,0.5);
}

.footer-links a:hover {
    color: white;
}

.disclaimer {
    background: #f9f9f9;
    padding: 25px;
    border-left: 4px solid var(--accent);
    margin: 40px 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 20px;
    z-index: 9999;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-content p a {
    color: var(--accent);
    text-decoration: underline;
}

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

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

.cookie-buttons button:hover {
    opacity: 0.9;
}

.cookie-accept {
    background: var(--accent);
    color: white;
}

.cookie-reject {
    background: transparent;
    border: 1px solid white;
    color: white;
}

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

.page-header h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

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

.content-page h2 {
    color: var(--dark);
    margin: 35px 0 15px;
    font-size: 1.5rem;
}

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

.content-page ul {
    margin: 15px 0 15px 25px;
    color: var(--text);
}

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

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

.thanks-box {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    max-width: 550px;
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.thanks-box h1 {
    color: var(--dark);
    margin-bottom: 15px;
}

.thanks-box p {
    color: var(--muted);
    margin-bottom: 30px;
}

.about-hero {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

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

.about-hero .image {
    flex: 0 0 45%;
}

.about-hero .image img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-item h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.value-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

.team-section {
    background: var(--secondary);
    padding: 80px 0;
}

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

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    max-width: 280px;
    text-align: center;
}

.team-member .photo {
    height: 250px;
    background-color: var(--light);
    overflow: hidden;
}

.team-member .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member .info {
    padding: 25px;
}

.team-member h4 {
    color: var(--dark);
    margin-bottom: 5px;
}

.team-member span {
    color: var(--accent);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .asymmetric-intro,
    .staggered-item,
    .contact-layout,
    .about-hero {
        flex-direction: column;
    }

    .staggered-item:nth-child(even) {
        flex-direction: column;
    }

    .asymmetric-intro .image-block,
    .staggered-item .visual,
    .contact-info,
    .about-hero .image {
        flex: none;
        width: 100%;
    }

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

    .hero-content {
        margin: 20px;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding-top: 20px;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        flex: 0 0 100%;
    }

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

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