:root {
    --primary: #2d3436;
    --secondary: #636e72;
    --accent: #c8a87c;
    --accent-dark: #a88b5c;
    --light: #f8f7f5;
    --white: #ffffff;
    --text: #2d3436;
    --text-light: #636e72;
    --border: #e0ddd8;
    --shadow: rgba(45, 52, 54, 0.08);
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

.header-top {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
}

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

.ad-disclosure {
    background-color: var(--accent);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.header-main {
    padding: 20px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

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

nav ul li a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.85) 0%, rgba(45, 52, 54, 0.6) 100%);
}

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

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

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

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

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

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

.btn-dark:hover {
    background-color: var(--secondary);
}

.section {
    padding: 80px 0;
}

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

.section-dark {
    background-color: var(--primary);
    color: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 600px;
}

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

.magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.magazine-main {
    flex: 2;
    min-width: 300px;
}

.magazine-sidebar {
    flex: 1;
    min-width: 280px;
}

.intro-block {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 16px;
    color: var(--text-light);
}

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

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

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

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

.service-card-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 16px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.services-grid .service-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 300px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
}

.services-list-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.services-list-item p {
    font-size: 14px;
    color: var(--text-light);
}

.services-list-item .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-dark);
    white-space: nowrap;
}

.features-row {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.feature-box {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 15px var(--shadow);
}

.feature-box-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 24px;
}

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

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

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

.team-grid {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--border);
}

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

.team-member h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-member p {
    font-size: 14px;
    color: var(--accent-dark);
}

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

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

.testimonial-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
}

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

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

.testimonial-author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent);
    overflow: hidden;
}

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

.testimonial-author-info h5 {
    font-size: 16px;
    font-weight: 600;
}

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

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

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--primary);
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 40px var(--shadow);
}

.form-container h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 8px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 168, 124, 0.2);
}

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

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn {
    min-width: 200px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.contact-item-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item-content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    flex: 1;
    background-color: var(--light);
    padding: 40px;
    border-radius: 12px;
}

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

.footer-grid {
    display: flex;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.7;
}

.footer-bottom a {
    color: inherit;
}

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

.page-header {
    background-color: var(--light);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 12px;
}

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

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--text-light);
}

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

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 16px;
    margin-top: 32px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.content-section ul,
.content-section ol {
    margin-bottom: 16px;
    padding-left: 24px;
    color: var(--text-light);
}

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

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

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

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

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

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 16px;
}

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

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

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

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner p {
    font-size: 14px;
    margin: 0;
    flex: 1;
}

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

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 13px;
}

.disclaimer {
    background-color: var(--light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 48px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.disclaimer strong {
    color: var(--text);
}

@media (max-width: 992px) {
    .magazine-grid {
        flex-direction: column;
    }

    .intro-block {
        flex-direction: column;
    }

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

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

    .services-grid .service-card {
        flex: 1 1 calc(50% - 12px);
    }

    .features-row {
        flex-wrap: wrap;
    }

    .feature-box {
        flex: 1 1 calc(50% - 16px);
    }

    .team-grid {
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 16px);
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .header-main .container {
        position: relative;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: 0 4px 20px var(--shadow);
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
    }

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

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

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 500px;
    }

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

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

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .services-grid .service-card {
        flex: 1 1 100%;
    }

    .feature-box {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 100%;
    }

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

    .form-row {
        flex-direction: column;
    }

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

    .footer-col {
        flex: 1 1 100%;
    }

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

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

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