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

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

.main-nav {
    background-color: #34495e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 0.75rem;
    color: #95a5a6;
    background-color: #2c3e50;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
}

.hero-full {
    position: relative;
    min-height: 500px;
    background-color: #1a252f;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background-color: rgba(0,0,0,0.5);
    padding: 3rem 2rem;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.intro-offset {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.visual-break {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.split-visual {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.visual-text-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.visual-text-block p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.visual-image-block {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

.visual-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.services-grid-main {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.service-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    background-color: #bdc3c7;
}

.service-card h3 {
    font-size: 1.3rem;
    padding: 1.2rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #34495e;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    padding: 0 1.5rem 1rem;
}

.cta-button {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.5rem;
    margin: 0 1.5rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

.form-section-main {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.form-wrapper-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

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

.main-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-button {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #229954;
}

.trust-indicators {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.trust-item p {
    color: #ecf0f1;
}

.cta-bottom {
    padding: 4rem 2rem;
    background-color: #3498db;
    text-align: center;
}

.cta-content-bottom h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-link-button {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-link-button:hover {
    background-color: #229954;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-block p,
.footer-block a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-block a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-accept:hover {
    background-color: #229954;
}

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

.page-header-simple {
    padding: 4rem 2rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.page-header-simple h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-header-simple p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.about-story {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.story-visual {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

.story-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.value-block p {
    color: #34495e;
}

.team-approach {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.approach-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-wrapper p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.coverage-info {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.coverage-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.coverage-info p {
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.05rem;
    color: #34495e;
}

.services-detailed {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.service-detail-item {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

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

.additional-services {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.additional-services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.additional-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.additional-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.additional-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-medium {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.additional-item p {
    color: #34495e;
}

.pricing-notes {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.pricing-notes h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.pricing-notes p {
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.05rem;
    color: #34495e;
}

.pricing-notes ul {
    max-width: 800px;
    margin: 1rem auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
}

.pricing-notes li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

.contact-main {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.contact-item p {
    color: #34495e;
    line-height: 1.8;
}

.contact-visual-block {
    flex: 1;
    min-width: 300px;
}

.contact-visual-block img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 2rem;
    background-color: #ecf0f1;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-note p {
    margin-bottom: 1.5rem;
    color: #34495e;
}

.coverage-map {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.coverage-map h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.coverage-map p {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    color: #34495e;
}

.cities-grid {
    max-width: 900px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.city-item {
    background-color: #3498db;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
}

.faq-contact {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    color: #34495e;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.thanks-info {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-info p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.thanks-next-steps {
    text-align: left;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-next-steps ol {
    margin-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 0.8rem;
    color: #34495e;
    font-size: 1.05rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button-secondary:hover {
    background-color: #7f8c8d;
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

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

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #95a5a6;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .split-visual,
    .story-content,
    .service-detail-item {
        flex-direction: column;
    }

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

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

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

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