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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

.btn-accept:hover {
    background: #27ae60;
}

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    border-radius: 3px;
}

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

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.25rem;
    color: #5d6d7e;
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    font-size: 1.1rem;
    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 4px 12px rgba(52, 152, 219, 0.3);
}

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

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.1rem;
    color: #5d6d7e;
    line-height: 1.8;
}

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

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

.services-preview {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.services-intro h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #5d6d7e;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.service-card p {
    color: #5d6d7e;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3498db;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.btn-inline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #2c3e50;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-inline:hover {
    background: #34495e;
}

.trust-section {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.trust-grid {
    display: flex;
    gap: 4rem;
    justify-content: space-around;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

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

.trust-item p {
    font-size: 1.1rem;
    color: #ecf0f1;
}

.cta-split-section {
    display: flex;
    min-height: 500px;
}

.cta-split-left {
    flex: 1;
    background: #34495e;
    color: #ffffff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.cta-split-left h2 {
    font-size: 2.5rem;
}

.cta-split-left p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.cta-split-right {
    flex: 1;
    background: #f8f9fa;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.main-form input,
.main-form select,
.main-form textarea {
    padding: 1rem;
    border: 1px solid #dcdde1;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: #3498db;
    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: #2980b9;
}

.info-section {
    padding: 4rem 2rem;
    background: #fff3cd;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 1.75rem;
    color: #856404;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.8;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    color: #bdc3c7;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem;
}

.hero-content h1 {
    font-size: 4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    color: #5d6d7e;
}

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

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

.values-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.values-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.values-intro h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.values-intro p {
    font-size: 1.2rem;
    color: #5d6d7e;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

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

.value-card p {
    color: #5d6d7e;
    line-height: 1.8;
}

.expertise-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-container h2 {
    font-size: 3rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4rem;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.expertise-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.expertise-item p {
    color: #5d6d7e;
    line-height: 1.8;
}

.cta-section-about {
    padding: 5rem 2rem;
    background: #3498db;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background: #ffffff;
    color: #3498db;
}

.cta-content .btn-primary:hover {
    background: #ecf0f1;
}

.page-hero-simple {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
}

.hero-simple-content h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-simple-content p {
    font-size: 1.5rem;
    color: #ecf0f1;
}

.services-detail-section {
    padding: 4rem 2rem;
}

.service-detail-item {
    display: flex;
    min-height: 600px;
    margin-bottom: 4rem;
}

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

.service-detail-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    background: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    color: #2c3e50;
}

.service-detail-content p {
    color: #5d6d7e;
    line-height: 1.8;
}

.service-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: #5d6d7e;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-top: 1rem;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
}

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

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

.cta-services-section {
    padding: 5rem 2rem;
    background: #34495e;
    text-align: center;
}

.cta-services-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-services-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-services-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.contact-split-hero {
    display: flex;
    min-height: 80vh;
}

.contact-info-side {
    flex: 1;
    padding: 4rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-side h1 {
    font-size: 3.5rem;
    color: #2c3e50;
}

.contact-info-side > p {
    font-size: 1.2rem;
    color: #5d6d7e;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.contact-item p {
    color: #5d6d7e;
    line-height: 1.8;
}

.contact-form-side {
    flex: 1;
    padding: 4rem;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 500px;
}

.form-container h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #dcdde1;
    border-radius: 4px;
    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;
}

.location-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.location-container {
    max-width: 1000px;
    margin: 0 auto;
}

.location-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.location-container p {
    font-size: 1.1rem;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.location-details p {
    margin-bottom: 1rem;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2ecc71;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #5d6d7e;
    margin-bottom: 3rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1.1rem;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-updated {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

.legal-container h3 {
    font-size: 1.25rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2980b9;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #dcdde1;
}

.cookie-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.cookie-table td {
    color: #5d6d7e;
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-split,
    .split-section,
    .page-hero-split,
    .cta-split-section,
    .contact-split-hero,
    .service-detail-item {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content,
    .hero-content,
    .cta-split-left,
    .cta-split-right,
    .service-detail-content,
    .contact-info-side,
    .contact-form-side {
        padding: 2rem;
    }

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

    .split-content h2,
    .values-intro h2,
    .expertise-container h2,
    .services-intro h2 {
        font-size: 2rem;
    }

    .trust-number {
        font-size: 3rem;
    }

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

    .service-card,
    .value-card {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-cta {
        flex-direction: column;
    }

    .thanks-cta a {
        width: 100%;
        text-align: center;
    }

    .legal-container {
        padding: 2rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-left,
    .split-content {
        padding: 3rem;
    }

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

    .split-content h2 {
        font-size: 2rem;
    }
}
