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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #f9fafb;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #00b894;
    color: #ffffff;
}

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

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

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

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #00b894;
}

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

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

.nav-links a:hover {
    color: #00b894;
}

.ad-label {
    font-size: 12px;
    color: #636e72;
    padding: 4px 12px;
    background-color: #f1f3f5;
    border-radius: 4px;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 600px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 80px;
}

.hero-content-left {
    flex: 1;
    padding-right: 40px;
}

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

.hero-content-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #00b894;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #00a080;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 184, 148, 0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e9ecef;
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 120px;
    align-items: flex-start;
}

.intro-block-narrow {
    flex: 1.5;
    padding-top: 40px;
}

.intro-block-narrow h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2d3436;
}

.intro-block-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: #636e72;
}

.intro-stat-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 80px;
}

.stat-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.stat-card p {
    font-size: 15px;
    color: #636e72;
}

.image-overlay-section {
    position: relative;
    height: 500px;
    margin: 120px 0;
    overflow: hidden;
}

.image-overlay-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #ced4da;
}

.overlay-text {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 48px 60px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.overlay-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2d3436;
}

.overlay-text p {
    font-size: 17px;
    color: #636e72;
    line-height: 1.7;
}

.services-preview {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 64px;
    text-align: center;
    color: #2d3436;
}

.services-grid-asymmetric {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.service-card.offset-top {
    margin-top: -40px;
}

.service-card.offset-bottom {
    margin-top: 40px;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #dee2e6;
}

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

.service-card p {
    font-size: 15px;
    color: #636e72;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #00b894;
    margin: 0 24px 20px;
}

.service-card .select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #2d3436;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #00b894;
    color: #ffffff;
    border-color: #00b894;
}

.services-additional {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 28px 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d3436;
}

.service-info p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 8px;
}

.price-inline {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #00b894;
}

.service-row .select-service {
    padding: 12px 32px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #2d3436;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.service-row .select-service:hover {
    background-color: #00b894;
    color: #ffffff;
    border-color: #00b894;
}

.trust-block {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-left {
    flex: 1;
}

.trust-left h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3436;
}

.trust-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #636e72;
}

.trust-right {
    flex: 1;
}

.trust-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.form-section {
    background-color: #f1f3f5;
    padding: 100px 40px;
    margin: 120px 0;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2d3436;
}

.form-intro p {
    font-size: 17px;
    color: #636e72;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 15px;
    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: #00b894;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #00b894;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px;
    background-color: #fff8e1;
    border-left: 4px solid #ffa000;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #5d4037;
}

.main-footer {
    background-color: #2d3436;
    color: #b2bec3;
    padding: 60px 40px 20px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-col p {
    margin-bottom: 12px;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    text-align: center;
}

.page-hero-minimal {
    max-width: 1400px;
    margin: 80px auto 60px;
    padding: 0 40px;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 52px;
    margin-bottom: 16px;
    color: #2d3436;
}

.page-hero-minimal p {
    font-size: 20px;
    color: #636e72;
}

.about-story {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.story-block {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-block img {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3436;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 20px;
}

.mission-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.mission-content {
    flex: 1;
    padding-left: 60px;
}

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3436;
}

.mission-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #636e72;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.values-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 64px;
    color: #2d3436;
}

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2d3436;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #636e72;
}

.team-intro {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2d3436;
}

.team-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #636e72;
    max-width: 900px;
    margin: 0 auto 48px;
}

.team-intro img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3436;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 28px 0;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    color: #636e72;
}

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

.service-pricing {
    margin: 32px 0;
}

.price-label {
    font-size: 14px;
    color: #636e72;
    margin-right: 12px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #00b894;
}

.service-detail-content .select-service {
    padding: 14px 40px;
    background-color: #00b894;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-detail-content .select-service:hover {
    background-color: #00a080;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.cta-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2d3436;
}

.cta-section p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 32px;
}

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

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

.contact-layout {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

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

.contact-item {
    margin-bottom: 40px;
}

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

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.map-placeholder {
    max-width: 1400px;
    margin: 60px auto 100px;
    padding: 60px 40px;
    background-color: #e9ecef;
    text-align: center;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 16px;
    color: #636e72;
}

.thanks-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2d3436;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 20px;
}

.thanks-details {
    background-color: #f1f3f5;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2d3436;
}

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

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

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

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

.legal-update {
    margin-top: 60px;
    font-style: italic;
    color: #868e96;
}

@media (max-width: 1024px) {
    .hero-offset,
    .intro-asymmetric,
    .trust-block,
    .story-block,
    .mission-offset,
    .service-detail-block,
    .contact-layout,
    .thanks-section {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card.offset-top,
    .service-card.offset-bottom {
        margin-top: 0;
    }

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

    .nav-container {
        padding: 0 20px;
    }

    .hero-content-left h1,
    .page-hero-minimal h1 {
        font-size: 38px;
    }
}
