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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --success-color: #27ae60;
}

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(--bg-white);
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

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

.intro-asymmetric {
    padding: 100px 60px;
    background-color: var(--bg-white);
    display: flex;
    gap: 80px;
}

.intro-offset {
    flex: 2;
}

.intro-offset h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.intro-offset p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-accent {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    align-self: center;
}

.intro-accent p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
}

.problem-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    background-color: var(--bg-light);
    padding: 80px 0;
}

.problem-visual {
    flex: 1;
    background-color: #ccc;
}

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

.problem-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.problem-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.services-cards h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.service-card h4 {
    font-size: 20px;
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-card .price {
    padding: 15px 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-card .select-service,
.service-card .select-service-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-inline {
    padding: 80px 120px;
    background-color: var(--primary-color);
    color: white;
}

.testimonial-inline blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 30px;
}

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

.testimonial-inline cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.approach-split {
    display: flex;
    padding: 80px 0;
    background-color: var(--bg-white);
}

.approach-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.approach-visual {
    flex: 1;
    background-color: #ccc;
}

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

.cta-fullwidth {
    padding: 80px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

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

.cta-fullwidth p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

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

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

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

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

.trust-indicators {
    display: flex;
    padding: 80px 60px;
    background-color: var(--bg-light);
    gap: 40px;
    flex-wrap: wrap;
}

.indicator {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.indicator h4 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.indicator p {
    font-size: 16px;
    color: var(--text-light);
}

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

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h5 {
    font-size: 18px;
    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: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 25px 40px;
    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;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

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

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

.cookie-actions a {
    color: white;
    font-size: 14px;
    text-decoration: underline;
}

.page-header-split {
    display: flex;
    min-height: 500px;
    background-color: var(--bg-light);
}

.header-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.header-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

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

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

.story-asymmetric {
    padding: 100px 60px;
    background-color: var(--bg-white);
    display: flex;
    gap: 60px;
}

.story-main {
    flex: 2;
}

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

.story-main p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.story-highlight {
    flex: 1;
    background-color: var(--accent-color);
    color: white;
    padding: 40px;
    align-self: center;
    border-radius: 8px;
}

.story-highlight blockquote p {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
}

.philosophy-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    background-color: var(--bg-light);
    padding: 80px 0;
}

.philosophy-visual {
    flex: 1;
    background-color: #ccc;
}

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

.philosophy-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.philosophy-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.team-cards {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

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

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.values-inline {
    padding: 80px 120px;
    background-color: var(--bg-light);
}

.values-inline h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.values-inline ul {
    list-style: none;
}

.values-inline ul li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.values-inline ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.approach-fullwidth {
    padding: 80px 120px;
    background-color: var(--bg-white);
}

.approach-fullwidth h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.approach-fullwidth p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
}

.cta-centered {
    padding: 80px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

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

.page-intro-centered {
    padding: 80px 60px;
    text-align: center;
    background-color: var(--bg-light);
}

.page-intro-centered h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-intro-centered p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    background-color: var(--bg-white);
}

.service-block-split {
    display: flex;
    padding: 80px 0;
}

.service-block-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    padding: 80px 0;
    background-color: var(--bg-light);
}

.service-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
}

.service-info ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-info ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-details {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.duration {
    font-size: 15px;
    color: var(--text-light);
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

.pricing-note {
    padding: 40px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.pricing-note p {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.cta-services {
    padding: 80px 60px;
    background-color: var(--bg-white);
    text-align: center;
}

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

.cta-services p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

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

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

.contact-info > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-note {
    background-color: var(--bg-white);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

.location-info {
    padding: 80px 120px;
    background-color: var(--bg-white);
}

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

.location-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.faq-section {
    padding: 80px 120px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.thanks-centered {
    padding: 100px 60px;
    background-color: var(--bg-light);
    min-height: 500px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--success-color);
}

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.service-selected {
    background-color: var(--bg-white);
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.service-selected p {
    font-size: 18px;
    color: var(--text-color);
}

.next-steps {
    background-color: var(--bg-white);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    text-align: left;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps ol li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-color);
}

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

.testimonial-thanks {
    padding: 80px 120px;
    background-color: var(--bg-white);
}

.testimonial-thanks blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 30px;
}

.testimonial-thanks p {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-color);
}

.testimonial-thanks cite {
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.legal-content {
    padding: 80px 120px;
    background-color: var(--bg-white);
    max-width: 1200px;
    margin: 0 auto;
}

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

.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 h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-color);
}

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

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

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .problem-split-reverse,
    .approach-split,
    .page-header-split,
    .story-asymmetric,
    .philosophy-split-reverse,
    .service-block-split,
    .service-block-split-reverse,
    .contact-split {
        flex-direction: column;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .nav-right {
        gap: 15px;
    }

    .hero-content,
    .header-content,
    .problem-text,
    .approach-text,
    .philosophy-text,
    .service-info,
    .contact-info {
        padding: 40px 30px;
    }

    .hero-content h1,
    .header-content h1 {
        font-size: 36px;
    }

    .services-cards,
    .testimonial-inline,
    .form-section,
    .trust-indicators,
    .team-cards,
    .values-inline,
    .approach-fullwidth,
    .location-info,
    .faq-section,
    .legal-content {
        padding: 60px 30px;
    }

    .card-grid,
    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

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