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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #2ecc71;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #27ae60;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-subtext {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.cta-primary.large {
    padding: 20px 48px;
    font-size: 18px;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--accent-color);
    color: white;
}

.cta-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.intro-section {
    padding: 80px 40px;
    background: var(--bg-white);
}

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

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.intro-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.service-row {
    display: flex;
    margin-bottom: 60px;
}

.service-row:last-child {
    margin-bottom: 0;
}

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

.service-visual,
.service-info {
    flex: 1;
}

.service-visual {
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-info {
    padding: 60px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.why-section {
    padding: 100px 40px;
    background: white;
}

.why-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-card {
    flex: 1;
    min-width: 260px;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.testimonial-row {
    display: flex;
    margin-bottom: 60px;
}

.testimonial-row:last-child {
    margin-bottom: 0;
}

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

.testimonial-text,
.testimonial-image {
    flex: 1;
}

.testimonial-text {
    padding: 60px;
    background: white;
    display: flex;
    align-items: center;
}

.testimonial-text blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-text cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.testimonial-image {
    overflow: hidden;
}

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

.cta-section {
    padding: 100px 40px;
    background: var(--primary-color);
    color: white;
}

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

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.9);
}

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-info,
.form-container {
    flex: 1;
}

.form-info h3 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.service-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.service-form h3 {
    font-size: 28px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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: var(--accent-color);
}

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

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

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.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: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.page-header {
    padding: 80px 40px 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-header .lead {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-split {
    padding: 80px 0;
}

.service-detail-split:nth-child(even) {
    background: var(--bg-light);
}

.service-detail-split .detail-left,
.service-detail-split .detail-right {
    flex: 1;
}

.detail-left {
    overflow: hidden;
}

.detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-right {
    padding: 60px;
}

.detail-right h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.detail-right p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.pricing-table {
    margin-bottom: 32px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-name {
    font-size: 16px;
    color: var(--text-dark);
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-detail-split {
    display: flex;
}

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

.cta-banner {
    padding: 100px 40px;
    background: var(--accent-color);
    color: white;
}

.cta-banner h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: white;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.about-hero-split {
    display: flex;
    min-height: 500px;
}

.about-hero-left,
.about-hero-right {
    flex: 1;
}

.about-hero-left {
    overflow: hidden;
}

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

.about-hero-right {
    padding: 80px 60px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-right h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-hero-right p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.philosophy-section {
    padding: 80px 40px;
    background: white;
}

.philosophy-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.philosophy-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.experience-row {
    display: flex;
    margin-bottom: 60px;
}

.experience-row:last-child {
    margin-bottom: 0;
}

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

.exp-content,
.exp-visual {
    flex: 1;
}

.exp-content {
    padding: 60px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.exp-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.exp-visual {
    overflow: hidden;
}

.exp-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 100px 40px;
    background: white;
}

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    padding: 100px 40px;
    background: var(--secondary-color);
    color: white;
}

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

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-info-side,
.contact-map-side {
    flex: 1;
}

.contact-info-side {
    padding-right: 60px;
}

.contact-info-side h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--accent-color);
    font-weight: 600;
}

.note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.map-placeholder {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

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

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

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

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

.faq-item {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 32px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-contact {
    padding: 100px 40px;
    background: var(--primary-color);
    color: white;
}

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

.cta-contact p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.thanks-hero {
    padding: 100px 40px;
    background: var(--bg-light);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.order-summary {
    background: white;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.order-summary h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.order-summary p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.next-steps {
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-text p {
    font-size: 16px;
    color: var(--text-light);
}

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

.contact-info-thanks {
    padding: 80px 40px;
    background: white;
}

.contact-info-thanks h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-info-thanks p {
    font-size: 17px;
    color: var(--text-light);
}

.legal-page {
    padding: 80px 40px;
    background: white;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-page .updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-split,
    .service-row,
    .testimonial-row,
    .form-split,
    .about-hero-split,
    .experience-row,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

    .service-row.reverse,
    .testimonial-row.reverse,
    .experience-row.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .service-info,
    .testimonial-text,
    .about-hero-right,
    .exp-content,
    .detail-right {
        padding: 40px;
    }

    .contact-info-side {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .features-grid,
    .values-grid,
    .faq-grid {
        gap: 24px;
    }

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

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

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

    .hero-left,
    .service-info,
    .testimonial-text,
    .about-hero-right,
    .exp-content,
    .detail-right {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .thanks-content h1 {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

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