* {
    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: #2c2c2c;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    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: 250px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background: #ffffff;
    color: #1a1a1a;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #e0e0e0;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 580px;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f9f9f9;
}

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

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
    max-width: 520px;
}

.cta-hero {
    display: inline-block;
    padding: 14px 32px;
    background: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-hero:hover {
    background: #1a1a1a;
}

.hero-right {
    flex: 1;
    background: #ddd;
    overflow: hidden;
}

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

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.intro-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.intro-image-offset {
    flex: 0.8;
    background: #f0f0f0;
    height: 420px;
    overflow: hidden;
}

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

.services-cards {
    padding: 100px 60px;
    background: #fafafa;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #ffffff;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

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

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

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

.process-split {
    display: flex;
    min-height: 600px;
}

.process-image {
    flex: 1;
    background: #e5e5e5;
    overflow: hidden;
}

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

.process-content {
    flex: 1;
    padding: 80px 60px;
    background: #2c2c2c;
    color: #ffffff;
}

.process-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #2c2c2c;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    font-size: 17px;
    line-height: 1.6;
}

.testimonials-stacked {
    padding: 100px 60px;
    background: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-stacked h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonial-item {
    margin-bottom: 50px;
    padding: 40px;
    background: #f9f9f9;
}

.testimonial-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.cta-form-section {
    padding: 100px 60px;
    background: #f0f0f0;
}

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

.form-wrapper h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.form-wrapper > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: -12px;
}

.contact-form input,
.contact-form select {
    padding: 14px 16px;
    border: 1px solid #ccc;
    font-size: 15px;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #2c2c2c;
}

.btn-submit {
    padding: 16px 32px;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a1a1a;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    background: #1a1a1a;
    color: #ffffff;
    gap: 40px;
}

.footer-left h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.footer-left p {
    font-size: 14px;
    color: #aaa;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-nav a:hover {
    color: #aaa;
}

.footer-right {
    max-width: 400px;
}

.footer-right p {
    font-size: 12px;
    line-height: 1.6;
    color: #999;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.thanks-content .selected-service {
    display: inline-block;
    padding: 12px 24px;
    background: #f0f0f0;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #2c2c2c;
}

.thanks-content a {
    display: inline-block;
    padding: 14px 32px;
    background: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #1a1a1a;
}

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

.page-container h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2c2c2c;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.page-container ul {
    margin: 20px 0 20px 30px;
}

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

.contact-page-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: #f9f9f9;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

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

.contact-detail h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

.contact-image {
    flex: 1;
    background: #e0e0e0;
    overflow: hidden;
}

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

.about-hero {
    padding: 100px 60px;
    background: #f9f9f9;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.about-image {
    flex: 1;
    background: #e5e5e5;
    height: 500px;
    overflow: hidden;
}

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

.services-list {
    padding: 100px 60px;
    background: #ffffff;
}

.services-list h1 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c2c2c;
}

.service-item-split {
    display: flex;
    margin-bottom: 60px;
    min-height: 360px;
}

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

.service-item-image {
    flex: 1;
    background: #e0e0e0;
    overflow: hidden;
}

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

.service-item-content {
    flex: 1;
    padding: 60px;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item-content h3 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.service-item-content .price {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

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

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split,
    .process-split,
    .contact-page-split,
    .about-content-split,
    .service-item-split {
        flex-direction: column;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .services-cards {
        padding: 60px 30px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .footer-split {
        flex-direction: column;
        padding: 40px 30px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .section-title-center {
        font-size: 32px;
    }
}
