* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #3498db;
    color: #ffffff;
}

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

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

.btn-cookie-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: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 3px;
    margin: 0;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

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

.hero-left p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

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

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

.intro-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.intro-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-split:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

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

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

.service-info p {
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3498db;
    margin: 1.5rem 0;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.approach-section-split {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-text {
    flex: 1.2;
}

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

.approach-text p {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-list {
    list-style: none;
    margin-left: 0;
}

.approach-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #546e7a;
    line-height: 1.6;
}

.approach-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.25rem;
}

.approach-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-section-centered {
    padding: 5rem 5%;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.cta-section-centered h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-section-centered p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.0625rem;
    color: #546e7a;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid #ecf0f1;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 5%;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p,
.footer-section ul {
    font-size: 0.9375rem;
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.7;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.page-hero-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content-left h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content-left p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
}

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

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

.story-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.story-split-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #546e7a;
    line-height: 1.6;
}

.team-section-split {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.team-intro p {
    font-size: 1.0625rem;
    color: #546e7a;
    line-height: 1.7;
}

.team-image-full {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.team-image-full img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.experience-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.experience-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.stat-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.0625rem;
    color: #546e7a;
}

.experience-text {
    flex: 1;
}

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

.experience-text p {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.page-hero-centered {
    padding: 5rem 5%;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.page-hero-centered h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.page-hero-centered p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 3rem 5%;
    background-color: #ffffff;
}

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    color: #546e7a;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-duration {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin: 1rem 0 1.5rem;
}

.btn-service {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.pricing-note {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

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

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

.pricing-content p {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-section-split {
    padding: 3rem 5%;
    background-color: #ffffff;
}

.contact-section-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-side {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.contact-note p {
    font-size: 0.9375rem;
    color: #546e7a;
    line-height: 1.6;
    margin: 0;
}

.contact-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.location-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

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

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

.location-content p {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.approach-contact {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-text-contact {
    flex: 1;
}

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

.approach-text-contact p {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.approach-image-contact {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.thanks-section {
    padding: 5rem 5%;
    background-color: #ffffff;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.thanks-content > p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    margin-bottom: 2.5rem;
}

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

.thanks-details p {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.next-steps {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

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

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.step-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.step-card p {
    color: #546e7a;
    line-height: 1.6;
}

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

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

.last-updated {
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.375rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.0625rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1.25rem 0 1.25rem 2rem;
}

.legal-content ul li {
    color: #546e7a;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-content a:hover {
    opacity: 0.7;
}

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

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-split,
    .page-hero-split,
    .intro-split,
    .service-card-split,
    .approach-container,
    .form-container-split,
    .story-split-reverse,
    .experience-content-split,
    .service-detail-split,
    .contact-section-split,
    .approach-split,
    .thanks-section {
        flex-direction: column;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
    }

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