:root {
    --primary: #2d5a7b;
    --primary-dark: #1e3d54;
    --secondary: #e8a849;
    --accent: #4a9b8f;
    --text: #2c3e50;
    --text-light: #5a6c7d;
    --bg: #fefefe;
    --bg-alt: #f4f7f9;
    --bg-warm: #faf8f5;
    --border: #dce4eb;
    --white: #ffffff;
    --shadow: rgba(45, 90, 123, 0.08);
    --shadow-medium: rgba(45, 90, 123, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--secondary);
}

.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 12px;
}

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

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

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

.hero-editorial {
    padding: 80px 24px 100px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-warm) 100%);
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-image-wrap {
    margin-top: 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
    background-color: var(--bg-alt);
}

.hero-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.editorial-section {
    padding: 80px 24px;
}

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

.editorial-section.warm {
    background: var(--bg-warm);
}

.section-header {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

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

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.story-block {
    max-width: 680px;
    margin: 0 auto;
}

.story-block p {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: var(--text);
}

.story-block p:first-of-type::first-letter {
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    padding-right: 12px;
    color: var(--primary);
    font-weight: 700;
}

.inline-image {
    margin: 40px -60px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.inline-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--bg-alt);
    text-align: center;
}

.inline-cta {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    margin: 20px 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

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

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

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.service-image {
    height: 180px;
    background-color: var(--bg-alt);
}

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

.service-content {
    padding: 24px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.service-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.service-btn {
    display: block;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
}

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

.benefits-list {
    max-width: 720px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.benefit-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-section {
    padding: 80px 24px;
    background: var(--primary-dark);
    color: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-header .section-tag {
    color: var(--secondary);
}

.testimonials-header .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1 1 300px;
    max-width: 320px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.95;
}

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

.testimonial-role {
    font-size: 0.85rem;
    opacity: 0.7;
}

.form-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 10px 50px var(--shadow);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 123, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: 12px;
}

.form-submit:hover {
    background: #d49940;
    transform: translateY(-2px);
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 12px;
}

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer {
    background: var(--bg-alt);
    padding: 40px 24px;
    border-top: 1px solid var(--border);
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--secondary);
}

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}

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

.cookie-accept:hover {
    background: #d49940;
}

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

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

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

.page-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.content-page .container-narrow h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 40px 0 16px;
}

.content-page .container-narrow h2:first-child {
    margin-top: 0;
}

.content-page .container-narrow p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-page .container-narrow ul {
    margin: 16px 0 24px 24px;
    color: var(--text);
}

.content-page .container-narrow ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-warm) 100%);
}

.thanks-content {
    text-align: center;
    max-width: 560px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-service {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    padding: 16px 24px;
    border-radius: 8px;
    margin: 24px 0;
    box-shadow: 0 4px 16px var(--shadow);
}

.thanks-link {
    display: inline-block;
    margin-top: 24px;
    color: var(--primary);
    font-weight: 600;
}

.about-story {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-story-text {
    flex: 1 1 400px;
}

.about-story-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-story-text p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-story-image {
    flex: 1 1 350px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: 900px;
    margin: 48px auto 0;
}

.team-card {
    flex: 1 1 200px;
    max-width: 240px;
    text-align: center;
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    background-color: var(--bg-alt);
}

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

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.services-detail {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.service-detail-item:last-child {
    border-bottom: none;
}

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

.service-detail-image {
    flex: 1 1 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

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

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

.service-detail-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-detail-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detail-content .price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-detail-content .price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

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

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px var(--shadow);
    }

    .nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

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

    .hero-image-wrap img {
        height: 280px;
    }

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

    .inline-image {
        margin: 32px 0;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

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

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