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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #1a3a4d;
    --accent-color: #e67e22;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 16px;
}

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

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

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

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a3a4d" width="1200" height="600"/><path fill="%232c5f7d" opacity="0.3" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>') center/cover;
    opacity: 0.4;
}

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

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 36px;
    opacity: 0.95;
}

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

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

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

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--secondary-color);
}

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

.stats-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.services-preview-section {
    padding: 90px 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--secondary-color);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-card-image {
    height: 200px;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: var(--secondary-color);
}

.service-card p {
    margin: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.service-card .btn-secondary {
    margin: 0 24px 28px;
    display: inline-block;
}

.cta-section-inline {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

.cta-inline-content {
    text-align: center;
}

.cta-inline-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-inline-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.process-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonials-section {
    padding: 90px 0;
    background: var(--bg-white);
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial {
    background: var(--bg-light);
    padding: 32px 36px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

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

.why-us-section {
    padding: 90px 0;
    background: var(--bg-light);
}

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

.benefit-item {
    flex: 1;
    min-width: 260px;
    background: var(--bg-white);
    padding: 32px 28px;
    border-radius: 8px;
}

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

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

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

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

.btn-full {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

.gallery-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item {
    flex: 1;
    min-width: 280px;
    height: 240px;
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    border-radius: 8px;
}

.main-footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-col a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

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

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

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie-accept:hover {
    background: #d35400;
}

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

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

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

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

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

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

.about-intro-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--secondary-color);
}

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

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.story-content {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

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

.story-image {
    flex: 1;
    min-width: 300px;
    height: 360px;
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    border-radius: 8px;
}

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

.team-description {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.certificates-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.certificates-list {
    margin: 24px 0;
    padding-left: 24px;
}

.certificates-list li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.services-detail-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.services-detail-section.alt-layout {
    background: var(--bg-light);
}

.service-detail {
    display: flex;
    gap: 56px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    height: 340px;
    background: linear-gradient(135deg, #55efc4 0%, #00b894 100%);
    border-radius: 8px;
}

.price-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin: 28px 0;
    border-left: 4px solid var(--accent-color);
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 6px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

.services-info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-info-content {
    background: var(--bg-white);
    padding: 40px 36px;
    border-radius: 8px;
}

.info-list {
    list-style: none;
}

.info-list li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.info-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.contact-content-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 36px;
    color: var(--secondary-color);
}

.contact-detail-block {
    margin-bottom: 32px;
}

.contact-detail-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-detail-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-detail-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-detail-block a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    min-width: 320px;
}

.map-placeholder {
    height: 450px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

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

.contact-faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: var(--bg-white);
    padding: 28px 32px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.thanks-section {
    padding: 100px 0;
    background: var(--bg-white);
    min-height: 60vh;
}

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

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

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

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

.thanks-info {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-info p {
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-steps {
    list-style: none;
    padding-left: 0;
}

.thanks-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.thanks-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.selected-service-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.selected-service-info p {
    margin: 0;
    font-size: 17px;
    color: var(--text-dark);
}

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

.legal-content {
    padding: 60px 0;
    background: var(--bg-white);
}

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

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

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

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

.legal-text ul {
    margin: 16px 0 16px 24px;
}

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

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 14px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table th,
.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--secondary-color);
}

.gdpr-table td,
.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

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

    .intro-text h2,
    .about-intro-content h2 {
        font-size: 30px;
    }

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

    .process-steps {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

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

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

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

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

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
