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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-visual-right {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.intro-split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-visual-left {
    flex: 1;
    overflow: hidden;
}

.intro-visual-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.value-cards {
    padding: 5rem 2rem;
    background: #ecf0f1;
    text-align: center;
}

.value-cards h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.services-showcase {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.2rem;
    color: #555;
}

.service-item-split {
    display: flex;
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-visual {
    flex: 1;
    overflow: hidden;
}

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

.btn-select-service {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: #34495e;
}

.testimonial-content {
    flex: 1;
    padding: 4rem;
    color: #ffffff;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonial-item {
    margin-bottom: 2.5rem;
}

.testimonial-item p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

.testimonial-visual {
    flex: 1;
    overflow: hidden;
}

.testimonial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-steps-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: left;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.process-step p {
    color: #555;
    line-height: 1.7;
}

.cta-split-form {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: #2c3e50;
}

.cta-content-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.cta-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content-left p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.form-container-right {
    flex: 1;
    padding: 4rem;
    background: #ffffff;
}

.main-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.trust-badges {
    padding: 3rem 2rem;
    background: #ecf0f1;
}

.badges-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.badge-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.badge-item h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.badge-item p {
    color: #555;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #aaa;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #aaa;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split-reverse,
    .service-item-split,
    .testimonials-split,
    .cta-split-form {
        flex-direction: column;
    }

    .service-item-split.reverse {
        flex-direction: column;
    }

    .hero-content-left,
    .intro-content-right,
    .service-content,
    .testimonial-content,
    .cta-content-left,
    .form-container-right {
        padding: 2rem;
    }

    .hero-content-left h1,
    .intro-content-right h2,
    .services-header h2,
    .testimonial-content h2,
    .process-section h2,
    .cta-content-left h2 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .process-steps-split {
        flex-direction: column;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}