* {
    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-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.container-split > * {
    flex: 1 1 400px;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

.hero-section {
    position: relative;
    min-height: 600px;
    background-color: #34495e;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.7));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    color: #ecf0f1;
    max-width: 600px;
}

.intro-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

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

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

.section-header-offset {
    margin-bottom: 70px;
    margin-left: 80px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #2c3e50;
}

.services-stacked {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 0;
    gap: 50px;
}

.service-block.left-aligned {
    flex-direction: row;
}

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

.service-block.centered-full {
    justify-content: center;
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.service-visual {
    flex: 1 1 400px;
    min-width: 300px;
}

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

.service-info {
    flex: 1 1 400px;
    padding: 20px;
}

.service-info-wide {
    max-width: 700px;
    text-align: center;
}

.service-info h3,
.service-info-wide h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p,
.service-info-wide p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.price-tag {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

.approach-section {
    padding: 100px 20px;
    background-color: #2c3e50;
}

.approach-text {
    color: #ecf0f1;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #ffffff;
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

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

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-box h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.cta-box > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
    font-size: 17px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-primary {
    padding: 15px 40px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 15px 40px;
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    font-style: italic;
}

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

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

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

.page-hero {
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-intro {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.about-intro p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}

.story-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1 1 400px;
}

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

.story-content {
    flex: 1 1 400px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.team-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #555;
}

.team-approach {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.approach-item {
    flex: 1 1 300px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-item p {
    font-size: 16px;
    color: #555;
}

.values-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.container-split.reverse {
    flex-direction: row-reverse;
}

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

.values-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.values-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.region-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.region-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.services-detailed {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
    position: relative;
}

.service-detail-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-title h2 {
    font-size: 36px;
    color: #ffffff;
    margin: 0;
}

.price-badge {
    background-color: #27ae60;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
}

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

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

.service-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    text-align: center;
}

.service-cta h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-cta p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.contact-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

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

.contact-info-block > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

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

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

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

.contact-detail .note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

.contact-visual {
    flex: 1 1 400px;
}

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

.location-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.availability-note {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.availability-note h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.availability-note p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

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

.next-steps {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.step {
    flex: 1 1 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {
    font-size: 16px;
    color: #555;
}

.legal-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

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

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

.legal-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

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

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

    .main-nav {
        gap: 15px;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .service-block {
        padding: 40px 0;
    }

    .service-block.left-aligned,
    .service-block.right-aligned {
        flex-direction: column;
    }

    .container-split,
    .container-split.reverse {
        flex-direction: column;
    }

    .cta-box {
        padding: 40px 30px;
    }

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

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions a {
        width: 100%;
        max-width: 300px;
    }
}