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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

.ad-disclosure {
    background-color: #f8f4f0;
    color: #6b4423;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e6d5c3;
}

.main-nav {
    background-color: #4a2c1a;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #f4e5d8;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: #f4e5d8;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd699;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: #f4e5d8;
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1410;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 35px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.btn-primary {
    display: inline-block;
    background-color: #d4874e;
    color: #ffffff;
    padding: 16px 42px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: #b8703e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 135, 78, 0.4);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #d4874e;
    padding: 16px 42px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #d4874e;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #d4874e;
    color: #ffffff;
}

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

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

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

.container-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}

.intro-section {
    background-color: #f8f4f0;
    padding: 90px 0;
    text-align: center;
}

.intro-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 30px;
}

.intro-section p {
    font-size: 19px;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 18px;
}

.features-section {
    background-color: #ffffff;
    padding: 0;
}

.feature-block {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.feature-dark {
    background-color: #3d2517;
    color: #f4e5d8;
}

.feature-light {
    background-color: #f5ebe0;
    color: #4a2c1a;
}

.feature-accent {
    background-color: #d4874e;
    color: #ffffff;
}

.feature-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 22px;
}

.feature-content p {
    font-size: 18px;
    line-height: 1.7;
}

.feature-image {
    flex: 1;
    overflow: hidden;
    background-color: #e6d5c3;
}

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

.services-preview {
    background-color: #faf7f4;
    padding: 90px 0;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    color: #4a2c1a;
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: calc(50% - 18px);
    max-width: 560px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e6d5c3;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #4a2c1a;
    padding: 25px 30px 12px 30px;
}

.service-card p {
    font-size: 16px;
    color: #5a4a3a;
    padding: 0 30px 18px 30px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #d4874e;
    padding: 0 30px 20px 30px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px 30px;
    background-color: #4a2c1a;
    color: #ffffff;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #6b4423;
}

.cta-section {
    background-color: #4a2c1a;
    color: #f4e5d8;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 35px;
}

.form-section {
    background-color: #f8f4f0;
    padding: 90px 0;
}

.order-form {
    background-color: #ffffff;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.order-form h3 {
    font-size: 32px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 35px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #4a2c1a;
    margin-bottom: 8px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4874e;
}

.btn-submit {
    width: 100%;
    background-color: #d4874e;
    color: #ffffff;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #b8703e;
}

.trust-section {
    background-color: #ffffff;
    padding: 90px 0;
}

.trust-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #4a2c1a;
    text-align: center;
    margin-bottom: 60px;
}

.trust-blocks {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: center;
}

.trust-item h4 {
    font-size: 24px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 16px;
}

.trust-item p {
    font-size: 17px;
    color: #5a4a3a;
    line-height: 1.7;
}

.disclaimer-section {
    background-color: #fef9f5;
    padding: 60px 0;
    border-top: 1px solid #e6d5c3;
    border-bottom: 1px solid #e6d5c3;
}

.disclaimer-text {
    font-size: 14px;
    color: #7a6a5a;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background-color: #2d1e14;
    color: #d4c0a9;
    padding: 60px 0 30px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-block {
    flex: 1;
    min-width: 220px;
}

.footer-block h4 {
    font-size: 20px;
    font-weight: 700;
    color: #f4e5d8;
    margin-bottom: 18px;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.footer-block ul li a {
    color: #d4c0a9;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #ffd699;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #453428;
}

.footer-bottom p {
    font-size: 14px;
    color: #a08970;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d1e14;
    color: #f4e5d8;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    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: 15px;
    line-height: 1.6;
    min-width: 300px;
}

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

.btn-accept {
    background-color: #d4874e;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #b8703e;
}

.btn-reject {
    background-color: transparent;
    color: #d4c0a9;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #d4c0a9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background-color: #453428;
    border-color: #f4e5d8;
    color: #f4e5d8;
}

.page-header {
    background-color: #4a2c1a;
    color: #f4e5d8;
    padding: 70px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    font-weight: 300;
}

.about-story {
    background-color: #ffffff;
    padding: 90px 0;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 70px;
}

.story-block img {
    flex: 1;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e6d5c3;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 20px;
}

.story-reverse {
    flex-direction: row-reverse;
}

.values-section {
    background-color: #f8f4f0;
    padding: 90px 0;
}

.values-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #4a2c1a;
    text-align: center;
    margin-bottom: 60px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-item {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.value-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a4a3a;
}

.team-section {
    background-color: #ffffff;
    padding: 90px 0;
    text-align: center;
}

.team-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 24px;
}

.team-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #5a4a3a;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-image img {
    border-radius: 12px;
    object-fit: cover;
    background-color: #e6d5c3;
}

.cta-about {
    background-color: #d4874e;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta-about h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 19px;
    margin-bottom: 35px;
}

.services-detailed {
    background-color: #ffffff;
    padding: 90px 0;
}

.service-full {
    display: flex;
    align-items: stretch;
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e6d5c3;
}

.service-full:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

.service-full-image img {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #e6d5c3;
}

.service-full-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-full-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 16px;
}

.service-price {
    font-size: 30px;
    font-weight: 700;
    color: #d4874e;
    margin-bottom: 24px;
}

.service-full-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a4a3a;
    margin-bottom: 24px;
}

.service-features {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 10px;
}

.service-note {
    font-size: 15px;
    font-style: italic;
    color: #7a6a5a;
    margin-bottom: 30px;
}

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

.cta-services {
    background-color: #f8f4f0;
    padding: 80px 0;
    text-align: center;
}

.cta-services h2 {
    font-size: 40px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 19px;
    color: #5a4a3a;
    margin-bottom: 35px;
}

.contact-info {
    background-color: #ffffff;
    padding: 90px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 260px;
    max-width: 360px;
}

.contact-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 16px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a4a3a;
    margin-bottom: 8px;
}

.email-display {
    color: #d4874e;
    font-weight: 600;
}

.note-small {
    font-size: 14px;
    color: #7a6a5a;
    font-style: italic;
}

.contact-map {
    background-color: #f8f4f0;
    padding: 0;
}

.map-placeholder {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e6d5c3;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(74, 44, 26, 0.9);
    color: #f4e5d8;
    padding: 30px;
    text-align: center;
}

.map-overlay p {
    font-size: 18px;
}

.contact-additional {
    background-color: #ffffff;
    padding: 90px 0;
}

.contact-additional h2 {
    font-size: 40px;
    font-weight: 700;
    color: #4a2c1a;
    text-align: center;
    margin-bottom: 60px;
}

.help-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.help-item {
    text-align: center;
}

.help-item h4 {
    font-size: 24px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 14px;
}

.help-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a4a3a;
    max-width: 600px;
    margin: 0 auto;
}

.cta-contact {
    background-color: #4a2c1a;
    color: #f4e5d8;
    padding: 80px 0;
    text-align: center;
}

.cta-contact h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 19px;
    margin-bottom: 35px;
}

.thanks-section {
    background-color: #f8f4f0;
    padding: 100px 0;
    min-height: 600px;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 46px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #5a4a3a;
    margin-bottom: 50px;
}

.order-summary {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 50px;
    text-align: left;
}

.order-summary h3 {
    font-size: 24px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 14px;
}

.order-summary p {
    font-size: 17px;
    color: #5a4a3a;
    margin-bottom: 10px;
}

.order-summary strong {
    color: #d4874e;
}

.thanks-next {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 24px;
    font-weight: 700;
    color: #4a2c1a;
    margin-bottom: 20px;
}

.thanks-next ul {
    list-style: disc;
    margin-left: 24px;
}

.thanks-next ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    background-color: #ffffff;
    padding: 90px 0;
}

.legal-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #4a2c1a;
    margin-top: 40px;
    margin-bottom: 18px;
}

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

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 18px;
}

.legal-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 18px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 10px;
}

.legal-content a {
    color: #d4874e;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #b8703e;
}

.update-date {
    font-size: 15px;
    color: #7a6a5a;
    font-style: italic;
    margin-top: 50px;
    text-align: center;
}

@media (max-width: 1024px) {
    .feature-block {
        flex-direction: column;
    }

    .feature-content {
        padding: 50px 40px;
    }

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

    .story-block,
    .story-reverse {
        flex-direction: column;
    }

    .service-full,
    .service-reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #4a2c1a;
        flex-direction: column;
        padding: 20px 30px;
        gap: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .feature-content {
        padding: 40px 30px;
    }

    .feature-content h3 {
        font-size: 28px;
    }

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

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

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

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .intro-section h2,
    .services-preview h2,
    .trust-section h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .order-form {
        padding: 35px 25px;
    }
}