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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.main-nav a {
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

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

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

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

.hero-left p {
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    background: #95a5a6;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

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

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

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

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

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.25rem;
}

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

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

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

.section-header-centered p {
    font-size: 1.15rem;
    color: #7f8c8d;
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-visual {
    flex: 1;
    background: #95a5a6;
}

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

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

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

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

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

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

.service-select:hover {
    background: #34495e;
    transform: translateX(4px);
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    background: #ecf0f1;
}

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

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

.form-left p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.selected-service-display {
    padding: 1.5rem;
    background: #ffffff;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.selected-service-display p {
    font-weight: 600;
    color: #27ae60;
    margin: 0;
}

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

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

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

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.trust-text p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.25rem;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
    background: #ecf0f1;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #34495e;
    font-weight: 500;
}

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

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

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

.footer-col a:hover {
    color: #27ae60;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.6;
    max-width: 900px;
    margin: 1.5rem auto 0;
}

@media (max-width: 968px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .trust-split {
        flex-direction: column;
    }

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

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

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

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

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

.thanks-container p {
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.service-selected-thanks {
    padding: 1.5rem;
    background: #ecf0f1;
    border-left: 4px solid #27ae60;
    margin: 2rem 0;
}

.service-selected-thanks strong {
    color: #27ae60;
}

.legal-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
}

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

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

.legal-container p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

.legal-container li {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-info-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-split {
    display: flex;
    gap: 3rem;
}

.contact-details {
    flex: 1;
    padding: 3rem;
    background: #ecf0f1;
    border-radius: 8px;
}

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

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

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

.contact-item p {
    font-size: 1.05rem;
    color: #7f8c8d;
}

.contact-map {
    flex: 1;
    background: #95a5a6;
    border-radius: 8px;
    min-height: 400px;
}

.about-hero {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.about-intro {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-text-col {
    flex: 1;
}

.about-text-col h1 {
    font-size: 2.75rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text-col p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-image-col {
    flex: 1;
    background: #bdc3c7;
    border-radius: 8px;
}

.about-image-col img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.mission-section {
    background: #ecf0f1;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

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

.mission-content h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.services-list-page {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.services-header h1 {
    font-size: 2.75rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.15rem;
    color: #7f8c8d;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-detail-text {
    flex: 2;
}

.service-detail-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.service-detail-pricing {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
}

.service-detail-pricing .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-detail-pricing p {
    font-size: 0.95rem;
    color: #7f8c8d;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-split,
    .about-intro,
    .service-detail-card {
        flex-direction: column;
    }

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