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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    border-top: 3px solid #e67e22;
}

.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: 1rem;
}

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

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

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

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

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

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-notice {
    padding: 0.5rem 1rem;
    background-color: #fff3cd;
    color: #856404;
    font-size: 0.85rem;
    border-radius: 4px;
    border: 1px solid #ffc107;
}

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

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

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

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

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

.hero-left p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

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

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

.hero-right {
    flex: 1;
    position: relative;
    background-color: #e67e22;
}

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

.intro-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

.intro-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

.intro-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.feature-split {
    display: flex;
    min-height: 650px;
    align-items: stretch;
    background-color: #f8f9fa;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.feature-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.link-cta {
    color: #e67e22;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: #d35400;
}

.feature-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.services-overview {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

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

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

.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card.featured {
    border: 3px solid #e67e22;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    padding: 1rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e67e22;
}

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

.btn-service:hover {
    background-color: #1a252f;
}

.form-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

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

.form-field input,
.form-field select {
    padding: 0.9rem;
    border: 2px solid #ecf0f1;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #e67e22;
}

.btn-submit {
    padding: 1.2rem;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.testimonial-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: #2c3e50;
    gap: 2rem;
}

.testimonial-content blockquote {
    border-left: 4px solid #e67e22;
    padding-left: 2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: #bdc3c7;
    font-style: normal;
    display: block;
    margin-top: 0.5rem;
}

.testimonial-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.about-preview {
    padding: 5rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.link-inline {
    color: #e67e22;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.5rem;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #d35400;
}

.footer-main {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #e67e22;
}

.footer-col p {
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #95a5a6;
    line-height: 1.6;
    max-width: 1100px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .feature-split,
    .testimonial-split {
        flex-direction: column;
    }

    .intro-split.reverse {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

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

    .service-card {
        max-width: 100%;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

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