* {
    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;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.cookie-accept {
    background-color: #2d7a3e;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #4a4a4a;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a5a5a;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a5c73;
}

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

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

.main-nav a:hover {
    color: #1a5c73;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.hero-section {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a5c73;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
    color: #ffffff;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

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

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.featured-services {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a5c73;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e8f0f2;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a5c73;
}

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

.price {
    font-size: 20px;
    font-weight: 700;
    color: #2d7a3e;
}

.trust-section {
    padding: 100px 0;
    background-color: #1a5c73;
    color: #ffffff;
}

.trust-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-image {
    flex: 1;
    background-color: #2a7a91;
    border-radius: 8px;
    overflow: hidden;
}

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

.additional-services {
    padding: 80px 0;
}

.centered-heading {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a5c73;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    border-left: 4px solid #2d7a3e;
    padding-left: 30px;
}

.service-details h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a5c73;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: #2d7a3e;
}

.cta-section {
    padding: 100px 0;
    background-color: #f0f4f5;
}

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

.form-wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1a5c73;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: #555;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5c73;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #2d7a3e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.image-break {
    margin: 80px 0;
}

.image-full {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8f0f2;
}

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

.why-us {
    padding: 80px 0;
}

.why-us h3 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a5c73;
}

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

.reason {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.reason h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a5c73;
}

.reason p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
}

.footer-bottom p {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px !important;
    line-height: 1.6;
    margin-bottom: 20px !important;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #1a5c73;
    color: #ffffff;
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.services-detailed {
    padding: 80px 0;
}

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

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

.service-visual {
    flex: 1;
    background-color: #e8f0f2;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-description {
    flex: 1;
}

.service-description h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a5c73;
}

.service-description p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.service-pricing {
    margin: 24px 0;
    padding: 20px;
    background-color: #f0f4f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #555;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a3e;
}

.service-cta {
    display: inline-block;
    padding: 12px 32px;
    background-color: #1a5c73;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #14495c;
}

.services-note {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.note-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.about-intro {
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: #e8f0f2;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a5c73;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.values-section {
    padding: 80px 0;
    background-color: #f0f4f5;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a5c73;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a5c73;
}

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

.story-section {
    padding: 80px 0;
}

.story-section h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a5c73;
    text-align: center;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #555;
}

.team-image {
    margin: 60px 0;
}

.full-width-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8f0f2;
}

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

.experience-section {
    padding: 80px 0;
    background-color: #1a5c73;
}

.experience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.exp-card {
    flex: 1 1 200px;
    text-align: center;
    padding: 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.exp-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 12px;
}

.exp-label {
    font-size: 16px;
    color: #e0e0e0;
    display: block;
}

.closing-section {
    padding: 100px 0;
    text-align: center;
}

.closing-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a5c73;
}

.closing-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.primary-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d7a3e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.primary-button:hover {
    background-color: #246831;
}

.contact-main {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a5c73;
}

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

.info-block h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a5c73;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-visual {
    flex: 1;
    background-color: #e8f0f2;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.location-section h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a5c73;
}

.location-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e8f0f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-notice {
    font-size: 18px;
    color: #1a5c73;
    font-weight: 600;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a5c73;
    text-align: center;
}

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

.faq-item {
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a5c73;
}

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

.cta-contact {
    padding: 80px 0;
    background-color: #1a5c73;
    color: #ffffff;
    text-align: center;
}

.cta-contact h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thanks-section {
    padding: 100px 0;
}

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

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

.thanks-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a5c73;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

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

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

.service-confirmation {
    font-weight: 600;
    color: #2d7a3e;
    font-size: 18px;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a5c73;
}

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

.steps-list li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #555;
}

.steps-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
}

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

.secondary-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a5c73;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    border: 2px solid #1a5c73;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: #1a5c73;
    color: #ffffff;
}

.additional-info {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.additional-info h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a5c73;
    text-align: center;
}

.additional-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.additional-info a {
    color: #1a5c73;
    text-decoration: underline;
}

.additional-info a:hover {
    color: #14495c;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a5c73;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a5c73;
}

.legal-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

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

.legal-content a {
    color: #1a5c73;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #14495c;
}

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

.cookies-table th,
.cookies-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background-color: #f0f4f5;
    font-weight: 600;
    color: #1a5c73;
}

.cookies-table td {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .service-card,
    .service-block,
    .trust-content,
    .about-content,
    .contact-layout {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .reasons-grid,
    .values-container {
        flex-direction: column;
    }

    .reason,
    .value-item {
        flex: 1 1 100%;
    }

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

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

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

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