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

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

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

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

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 4px 10px;
    border-radius: 4px;
}

.nav-main {
    display: flex;
    gap: 25px;
}

.nav-main a {
    text-decoration: none;
    color: #34495e;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-main a:hover {
    color: #27ae60;
}

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

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

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

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

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s;
}

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

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

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

.services-cards-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
}

.section-title-left {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 10px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

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

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-card {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.about-preview-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-preview-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.about-preview-text {
    flex: 1;
}

.about-preview-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    margin-top: 10px;
}

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

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-wrapper {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
}

.form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #d1d8dd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.footer-main {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-cookie-accept:hover {
    opacity: 0.9;
}

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

.btn-cookie-reject:hover {
    opacity: 0.8;
}

.page-header-section {
    padding: 60px 0 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.services-detailed-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 0.95rem;
    color: #5a6c7d;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-pricing-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    text-transform: uppercase;
    font-weight: 600;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.price-note {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.btn-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cta-section-alt {
    padding: 80px 0;
    background-color: #27ae60;
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-section-alt p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    background-color: #ffffff;
    color: #27ae60;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
}

.about-story-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.about-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.about-image-block {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

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

.team-member-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    border: 1px solid #e8ecef;
}

.team-member-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.team-member-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.equipment-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.equipment-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.equipment-layout.reverse {
    flex-direction: row-reverse;
}

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

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

.equipment-text {
    flex: 1;
}

.equipment-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.equipment-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.cta-section-simple {
    padding: 80px 0;
    background-color: #2c3e50;
    text-align: center;
}

.cta-section-simple h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-section-simple p {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-bottom: 30px;
}

.contact-info-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.contact-info-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 5px;
}

.contact-map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-map-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.map-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-additional-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.contact-additional-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
    text-align: center;
}

.contact-additional-section .btn-primary {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
}

.thanks-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.thanks-service-info {
    margin-bottom: 25px;
}

.selected-service {
    font-size: 1.1rem;
    color: #2c3e50;
}

.selected-service strong {
    color: #27ae60;
}

.thanks-next-steps {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

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

.thanks-additional-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
}

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

.next-step-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e8ecef;
}

.next-step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.next-step-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.legal-page-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.legal-page-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.legal-page-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page-section li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e8ecef;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-main {
        flex-wrap: wrap;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .hero-image-container {
        height: 400px;
    }

    .service-card {
        width: 100%;
    }

    .about-preview-layout,
    .about-layout,
    .equipment-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

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

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

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