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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e67e22;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 35px;
}

.nav-right a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hero-text {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #555;
}

.hero-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 100px 60px;
}

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

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

.intro-text {
    flex: 1;
    padding: 0 60px;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-grid {
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.service-cards-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.process-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
}

.process-text {
    flex: 1;
    padding-right: 60px;
}

.process-text h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    min-width: 80px;
}

.step-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 16px;
    color: #555;
}

.process-image {
    flex: 1;
    background-color: #ddd;
}

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

.testimonials-full {
    padding: 100px 60px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.testimonials-full h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    flex: 0 0 calc(33.333% - 27px);
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    opacity: 0.8;
}

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

.cta-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--accent-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: var(--light-bg);
}

.cta-visual {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-section {
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-container > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    padding-right: 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
    max-width: 900px;
    margin: 15px auto 0;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
    align-items: center;
}

.about-hero-image {
    flex: 1;
    background-color: #ddd;
}

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

.about-hero-text {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.about-hero-text h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-hero-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

.story-section {
    padding: 100px 200px;
    text-align: center;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
}

.values-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.values-text {
    flex: 1;
    padding-right: 60px;
}

.values-text h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.value-item {
    margin-bottom: 35px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.values-image {
    flex: 1;
    background-color: #ddd;
}

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

.team-section {
    padding: 100px 60px;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #666;
}

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 0 0 calc(33.333% - 27px);
}

.member-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.member-role {
    display: block;
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.approach-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.approach-image {
    flex: 1;
    background-color: #ddd;
}

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

.approach-text {
    flex: 1;
    padding-left: 60px;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.cta-centered {
    padding: 100px 60px;
    text-align: center;
}

.cta-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-centered p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #666;
}

.services-hero {
    padding: 100px 60px;
    text-align: center;
    background-color: var(--light-bg);
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-hero p {
    font-size: 20px;
    color: #666;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

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

.service-detail-content {
    flex: 1;
    padding: 0 60px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #555;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.btn-inline {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.service-detail-image {
    flex: 1;
    background-color: #ddd;
}

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

.pricing-info {
    padding: 80px 200px;
    text-align: center;
    background-color: var(--light-bg);
}

.pricing-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.pricing-info p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.contact-hero {
    padding: 100px 60px;
    text-align: center;
    background-color: var(--light-bg);
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-hero p {
    font-size: 20px;
    color: #666;
}

.contact-split {
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.contact-info {
    flex: 1;
    padding-right: 60px;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-image {
    flex: 1;
    background-color: #ddd;
}

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

.approach-info {
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.approach-info h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.approach-steps-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.approach-step {
    flex: 0 0 calc(25% - 30px);
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.approach-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-section {
    padding: 100px 200px;
}

.faq-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 100px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.thanks-service-info {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-service-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
}

.selected-service {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.thanks-next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.next-step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.step-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.next-step div h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.next-step div p {
    font-size: 16px;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #d35400;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.legal-content {
    padding: 100px 200px;
    max-width: 1400px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-back {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.legal-back a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.legal-back a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-reverse,
    .process-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .about-hero-split,
    .cta-split {
        flex-direction: column;
    }

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

    .hero-text,
    .intro-text,
    .process-text,
    .values-text,
    .approach-text,
    .service-detail-content,
    .contact-info,
    .about-hero-text,
    .cta-content {
        padding: 60px 40px;
    }

    .service-cards-split,
    .testimonial-grid,
    .team-grid,
    .approach-steps-grid {
        flex-direction: column;
    }

    .service-card,
    .testimonial,
    .team-member,
    .approach-step {
        flex: 0 0 100%;
    }

    .story-section,
    .pricing-info,
    .faq-section,
    .legal-content {
        padding: 80px 40px;
    }

    .nav-split {
        padding: 20px 30px;
    }

    .nav-right {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-col {
        margin-bottom: 30px;
    }

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

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

    .nav-split {
        flex-direction: column;
        gap: 20px;
    }

    .nav-right {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}