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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --white: #ffffff;
    --gray-dark: #555;
    --gray-light: #ecf0f1;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

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

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.ad-notice {
    font-size: 0.85rem;
    color: var(--gray-dark);
    padding: 0.5rem 1rem;
    background-color: var(--gray-light);
    border-radius: 4px;
}

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

.nav-main a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: var(--secondary-color);
}

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

.hero-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-bg);
}

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

.hero-left p {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    background-color: var(--gray-light);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.intro-offset {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.intro-content {
    flex: 1.2;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

.intro-visual {
    flex: 1;
    background-color: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
}

.services-grid {
    padding: 5rem 5%;
    background-color: var(--white);
}

.services-intro {
    max-width: 700px;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-image {
    background-color: var(--gray-light);
    height: 240px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--gray-dark);
}

.service-card .price {
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.card-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--primary-color);
}

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

.benefits-visual {
    flex: 1;
    background-color: var(--gray-light);
}

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

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

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.approach-section {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.approach-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.approach-step h3 {
    margin-bottom: 0.75rem;
}

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

.form-side {
    flex: 1;
    padding: 5rem 5%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-side h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-side p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.visual-side {
    flex: 1;
    background-color: var(--gray-light);
}

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

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
}

.form-group select option {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-indicators {
    padding: 5rem 5%;
    background-color: var(--white);
}

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

.testimonials-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray-dark);
}

.footer-main {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-bg);
}

.hero-image-right {
    flex: 1;
    background-color: var(--gray-light);
}

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

.story-section {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.story-section h2 {
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.values-visual {
    flex: 1;
    background-color: var(--gray-light);
}

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

.values-content {
    flex: 1;
    padding: 5rem 5%;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.value-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.expertise-section {
    padding: 5rem 5%;
    background-color: var(--white);
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.expertise-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.expertise-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.expertise-card img {
    width: 100%;
    height: 240px;
}

.expertise-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.expertise-card p {
    padding: 0 1.5rem 1.5rem;
}

.approach-detail {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: var(--light-bg);
}

.approach-content-right {
    flex: 1.2;
}

.approach-content-right h2 {
    margin-bottom: 1.5rem;
}

.approach-content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-visual-left {
    flex: 1;
    background-color: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
}

.cta-about {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-about h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.services-hero {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--light-bg);
}

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

.services-hero p {
    font-size: 1.2rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

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

.service-text {
    flex: 1.2;
}

.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-visual {
    flex: 1;
    background-color: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.price-label {
    font-weight: 600;
    margin-right: 1rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section-centered {
    padding: 5rem 5%;
    background-color: var(--light-bg);
    text-align: center;
}

.form-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-section-centered p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-form-inline {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form-inline .form-group input,
.contact-form-inline .form-group select {
    background-color: var(--white);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.contact-form-inline .form-group label {
    color: var(--text-color);
}

.contact-hero {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--light-bg);
}

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

.contact-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    background-color: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.location-section {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.location-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.location-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
}

.next-steps {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.next-steps p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-container {
    display: flex;
    min-height: 600px;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.2;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-info {
    margin: 3rem 0;
}

.thanks-info h2 {
    margin-bottom: 2rem;
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--secondary-color);
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.thanks-visual {
    flex: 1;
    background-color: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-content {
    padding: 5rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    list-style: disc;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

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

    .hero-split,
    .intro-offset,
    .benefits-split,
    .cta-form-split,
    .page-hero-split,
    .values-split,
    .approach-detail,
    .service-detail-split,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

    .hero-left,
    .hero-content-left {
        padding: 3rem 5%;
    }

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

    .service-cards,
    .approach-grid,
    .testimonials-grid,
    .expertise-grid,
    .location-details,
    .next-steps-grid {
        flex-direction: column;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}