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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

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

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

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

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

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

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

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

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

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a252f;
    text-decoration: none;
}

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

.ad-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.4rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

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

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

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.intro-split {
    display: flex;
}

.intro-left,
.intro-right {
    flex: 1;
}

.intro-left {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

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

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-right {
    position: relative;
    overflow: hidden;
}

.intro-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-showcase {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

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

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

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

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

.service-left,
.service-right {
    flex: 1;
}

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

.service-left h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

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

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

.service-right {
    position: relative;
    overflow: hidden;
}

.service-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.approach-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.approach-left {
    flex: 1;
    padding: 3rem 4rem;
}

.approach-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.approach-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    font-size: 1.05rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2c3e50;
    border-bottom: 1px solid #e0e0e0;
}

.approach-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.2rem;
}

.approach-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.approach-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.form-container-split {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

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

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d7de;
    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-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 3rem;
    background-color: #f8f9fa;
    border-left: 4px solid #e74c3c;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

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

.footer-section p {
    margin-bottom: 0.5rem;
    color: #b0b8c1;
    font-size: 0.95rem;
}

.footer-section a {
    color: #b0b8c1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c3e50;
    color: #7f8c8d;
    font-size: 0.9rem;
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.btn-back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-back-home:hover {
    background-color: #2980b9;
}

.about-hero {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    max-width: 900px;
}

.about-hero p {
    font-size: 1.3rem;
    color: #5a6c7d;
    line-height: 1.8;
    max-width: 800px;
}

.about-split-section {
    display: flex;
}

.about-split-left,
.about-split-right {
    flex: 1;
}

.about-split-left {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.about-split-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.about-split-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.about-split-right {
    position: relative;
    overflow: hidden;
}

.about-split-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-hero {
    padding: 4rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.contact-details-split {
    display: flex;
    min-height: 500px;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-map {
    background-color: #cbd6dd;
    position: relative;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-page-hero {
    padding: 4rem;
    background-color: #f8f9fa;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.services-page-hero p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #5a6c7d;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-item-split,
    .approach-split,
    .about-split-section,
    .contact-details-split {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-left,
    .service-left,
    .approach-left,
    .about-split-left,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-content h1,
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .services-header h2,
    .intro-left h2 {
        font-size: 2rem;
    }

    .header-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-main {
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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