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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: #ecf0f1;
    min-height: 500px;
}

.hero-content {
    padding: 64px 32px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.hero-content p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.intro-block {
    padding: 80px 32px;
    background-color: #ffffff;
}

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

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro-block h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.insight-section {
    padding: 80px 32px;
    background-color: #f8f9fa;
}

.container-wide {
    display: flex;
    gap: 48px;
    align-items: center;
}

.insight-left {
    flex: 1;
    background-color: #bdc3c7;
}

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

.insight-right {
    flex: 1;
}

.insight-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.insight-right ul {
    list-style: none;
    padding: 0;
}

.insight-right ul li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.insight-right ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.services-preview {
    padding: 80px 32px;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 56px;
    color: #2c3e50;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    width: calc(33.333% - 24px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin: 0 20px 16px;
    color: #666;
    flex-grow: 1;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    margin: 0 20px 16px;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 20px 20px;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 80px 32px;
    background-color: #ecf0f1;
}

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

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 32px;
    font-size: 18px;
    color: #555;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 16px;
    margin-bottom: 24px;
    border-left: 4px solid #27ae60;
    font-size: 16px;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 48px 32px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
    max-width: 900px;
    margin: 16px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 12px 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;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-hero {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 32px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: #ecf0f1;
}

.about-story {
    padding: 80px 32px;
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.values-section {
    padding: 80px 32px;
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-left: 4px solid #3498db;
}

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

.value-item p {
    font-size: 16px;
    color: #666;
}

.team-section {
    padding: 80px 32px;
    background-color: #ffffff;
}

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

.team-image {
    max-width: 800px;
    margin: 0 auto 32px;
    background-color: #bdc3c7;
}

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

.team-section p {
    font-size: 18px;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-section {
    padding: 80px 32px;
    background-color: #ecf0f1;
}

.mission-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.mission-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.services-full {
    padding: 48px 32px;
}

.service-full-item {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-full-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

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

.service-full-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-full-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.price-large {
    font-size: 32px;
    font-weight: bold;
    color: #27ae60;
    margin: 24px 0;
}

.cta-link {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

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

.contact-section {
    padding: 80px 32px;
    background-color: #ffffff;
}

.contact-info-block {
    margin-bottom: 48px;
}

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

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

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

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

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-image-block {
    max-width: 1000px;
    margin: 48px auto 0;
    background-color: #bdc3c7;
}

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

.location-section {
    padding: 80px 32px;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.location-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.thanks-section {
    padding: 80px 32px;
    background-color: #ffffff;
    min-height: 500px;
}

.thanks-content {
    text-align: center;
    margin-bottom: 48px;
}

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

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
}

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

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

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

.thanks-image {
    max-width: 600px;
    margin: 0 auto;
    background-color: #bdc3c7;
}

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

.legal-page {
    padding: 80px 32px;
    background-color: #ffffff;
}

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

.legal-page > .container-narrow > p:first-of-type {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

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

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

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

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

.legal-page ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.8;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .container-wide {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

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