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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

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

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2980b9;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2980b9;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 4px 12px;
    border-radius: 12px;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 36px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #2980b9;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #21618c;
}

.hero-right {
    flex: 1;
    position: relative;
    background: #34495e;
}

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

.intro-offset {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background: #e8e8e8;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-alternating {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 20px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 18px;
    color: #7f8c8d;
}

.service-row {
    display: flex;
    margin-bottom: 100px;
    gap: 60px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background: #ecf0f1;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #2c3e50;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.select-service:hover {
    background: #2c3e50;
}

.form-section {
    background: #f8f9fa;
    padding: 80px 20px;
    margin-top: 100px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 12px;
    text-align: center;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d7de;
    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: #2980b9;
}

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

.btn-submit:hover {
    background: #21618c;
}

.trust-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
    margin-top: 100px;
}

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

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

.footer-column h4 {
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.page-hero {
    background: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-subtitle {
    font-size: 20px;
    color: #7f8c8d;
}

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-block {
    margin-bottom: 80px;
}

.about-text-wide {
    max-width: 900px;
    margin: 0 auto;
}

.about-text-wide h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text-wide p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image-side {
    flex: 1;
    background: #e8e8e8;
}

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

.about-content-side {
    flex: 1;
}

.about-content-side h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-content-side p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2980b9;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

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

.team-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-intro img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: #ecf0f1;
    margin-top: 80px;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #2980b9;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #21618c;
}

.services-detail {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 100px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-detail-image {
    flex: 1;
    background: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-description {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #2c3e50;
}

.specs-list {
    list-style: none;
    margin-bottom: 24px;
}

.specs-list li {
    padding: 6px 0;
    color: #5a6c7d;
    font-size: 15px;
}

.pricing-block {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 8px;
}

.price-extra {
    font-size: 14px;
    color: #7f8c8d;
}

.additional-info {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background: #f8f9fa;
}

.additional-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.info-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 280px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2980b9;
}

.info-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.contact-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2980b9;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.note {
    font-size: 14px;
    color: #95a5a6;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    background: #ecf0f1;
}

.contact-map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.map-caption {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: #7f8c8d;
}

.faq-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 40px;
}

.selected-service {
    font-size: 17px;
    color: #2c3e50;
    padding: 16px;
    background: #ffffff;
    border-radius: 6px;
    display: inline-block;
}

.next-steps {
    text-align: left;
    margin-bottom: 60px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: #2c3e50;
}

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

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

.step-number {
    width: 48px;
    height: 48px;
    background: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #2980b9;
    color: #ffffff;
}

.btn-primary:hover {
    background: #21618c;
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #d5dbdb;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2980b9;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

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

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

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

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

    .service-detail-card {
        flex-direction: column;
    }

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

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