* {
    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: #333;
    background: #fff;
}

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

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

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

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

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

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

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

.hero-intro {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-right p {
    margin-bottom: 1rem;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

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

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

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

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

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

.content-left p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.content-right {
    overflow: hidden;
}

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

.services-intro {
    padding: 4rem 3rem 2rem;
    text-align: center;
    background: #fff;
}

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

.services-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid-split {
    background: #f8f9fa;
}

.service-row {
    display: flex;
    min-height: 450px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

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

.service-details p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

.btn-select-service {
    padding: 0.9rem 1.8rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

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

.form-left {
    flex: 1;
    padding: 4rem;
    background: #34495e;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.form-note {
    margin-top: 2rem;
    font-style: italic;
    color: #bdc3c7;
}

.form-right {
    flex: 1;
    padding: 4rem;
    background: #ecf0f1;
    display: flex;
    align-items: center;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: #fff;
    color: #27ae60;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 5rem 3rem;
    background: #fff;
}

.trust-content h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.trust-points-split {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
}

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

.trust-item p {
    color: #555;
    line-height: 1.7;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 3rem;
    background: #2c3e50;
    color: #fff;
    gap: 3rem;
}

.footer-section {
    flex: 1;
}

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

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

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

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #fff;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #95a5a6;
}

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

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

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

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

.service-selected {
    background: #ecf0f1;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-selected strong {
    color: #2c3e50;
}

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

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

.page-header {
    padding: 4rem 3rem 2rem;
    text-align: center;
    background: #ecf0f1;
}

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

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.page-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

.page-content h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin: 1.5rem 0 0.8rem;
}

.page-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.page-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.page-content li {
    margin-bottom: 0.5rem;
}

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

.contact-info {
    flex: 1;
    padding: 4rem;
    background: #34495e;
    color: #fff;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

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

.contact-item p {
    color: #bdc3c7;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: #95a5a6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .content-split,
    .service-row,
    .form-section,
    .contact-split {
        flex-direction: column;
    }

    .content-split.reverse,
    .service-row.reverse {
        flex-direction: column;
    }

    .hero-left {
        min-height: 300px;
    }

    .hero-right,
    .content-left,
    .service-details,
    .form-left,
    .form-right,
    .contact-info {
        padding: 2rem;
    }

    .trust-points-split {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}