* {
    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: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

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

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2980b9;
}

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

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-right a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 8%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #555;
    max-width: 550px;
}

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

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

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

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.statement-split {
    display: flex;
    align-items: center;
}

.statement-visual {
    flex: 0.9;
    overflow: hidden;
}

.statement-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.statement-content {
    flex: 1.1;
    padding: 6rem 8%;
    background: #2c3e50;
    color: #ffffff;
}

.statement-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.statement-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.services-grid {
    padding: 8rem 5%;
    background: #ffffff;
}

.section-intro-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-intro-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro-centered p {
    font-size: 1.2rem;
    color: #666;
}

.service-cards-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

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

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

.process-split {
    display: flex;
    background: #f8f9fa;
}

.process-content {
    flex: 1.2;
    padding: 6rem 8%;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.process-visual {
    flex: 0.8;
    overflow: hidden;
}

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

.testimonial-offset {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.testimonial-block {
    max-width: 500px;
    padding: 2rem;
}

.testimonial-block blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    display: block;
    font-size: 1rem;
    color: #ecf0f1;
    font-style: normal;
}

.why-choose-split {
    display: flex;
    align-items: center;
}

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

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 650px;
}

.why-content {
    flex: 1;
    padding: 6rem 8%;
    background: #ffffff;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.benefit-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefit-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
    font-weight: bold;
}

.cta-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.gallery-showcase {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.gallery-showcase h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.gallery-grid {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.form-section-split {
    display: flex;
    align-items: stretch;
    background: #ffffff;
}

.form-intro {
    flex: 0.8;
    padding: 6rem 8%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.form-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ecf0f1;
}

.form-container {
    flex: 1.2;
    padding: 6rem 8%;
    background: #f8f9fa;
}

#project-form {
    max-width: 600px;
}

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

.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: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    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: #3498db;
}

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

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

.final-cta-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.final-cta-content {
    flex: 1;
    padding: 6rem 8%;
    background: #3498db;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #ecf0f1;
}

.final-cta-visual {
    flex: 1;
    overflow: hidden;
}

.final-cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.footer-split {
    display: flex;
    padding: 4rem 5%;
    background: #2c3e50;
    color: #ffffff;
}

.footer-left {
    flex: 1;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #95a5a6;
}

.footer-right {
    flex: 1;
}

.footer-links {
    display: flex;
    gap: 4rem;
    justify-content: flex-end;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ecf0f1;
}

.footer-column a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

@media (max-width: 1024px) {
    .hero-split,
    .statement-split,
    .process-split,
    .why-choose-split,
    .final-cta-split,
    .form-section-split {
        flex-direction: column;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image img,
    .statement-visual img,
    .process-visual img,
    .why-visual img,
    .final-cta-visual img {
        min-height: 400px;
    }

    .gallery-grid {
        flex-wrap: wrap;
    }

    .gallery-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .testimonial-offset {
        flex-direction: column;
    }

    .footer-split {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-intro-centered h2,
    .statement-content h2,
    .process-content h2,
    .why-content h2,
    .form-intro h2 {
        font-size: 2rem;
    }

    .hero-content,
    .statement-content,
    .process-content,
    .why-content,
    .form-intro,
    .form-container,
    .final-cta-content {
        padding: 4rem 6%;
    }

    .gallery-item {
        flex: 0 0 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}