* {
    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;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-content a {
    color: #3498db;
}

.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;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

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

.nav-main {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #27ae60;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.hero-right {
    flex: 1;
    background-color: #e8f5e9;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #229954;
    opacity: 1;
}

.intro-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.intro-split {
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

.intro-image img {
    width: 100%;
}

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

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

.services-header p {
    font-size: 1.125rem;
    color: #34495e;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    background-color: #e8f5e9;
}

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

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #34495e;
    flex-grow: 1;
}

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

.service-card .btn-secondary {
    display: block;
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card .btn-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
    opacity: 1;
}

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

.values-text {
    flex: 1;
    padding: 3rem;
}

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

.values-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.values-list {
    list-style: none;
    margin-top: 2rem;
}

.values-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.values-image img {
    width: 100%;
}

.cta-section {
    background-color: #27ae60;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #ffffff;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.cta-large:hover {
    transform: scale(1.05);
    opacity: 1;
}

.testimonials {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.testimonial-card p {
    font-size: 1.125rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    font-size: 0.875rem;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-info p {
    font-size: 1.125rem;
    color: #34495e;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

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

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-column a {
    display: block;
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #27ae60;
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 0.875rem;
    color: #95a5a6;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.875rem;
}

.page-header {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.header-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 400px;
}

.header-content {
    flex: 1;
}

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

.header-content p {
    font-size: 1.25rem;
    color: #34495e;
}

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

.header-image img {
    width: 100%;
}

.about-story {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.story-image {
    flex: 1;
    background-color: #c8e6c9;
}

.story-image img {
    width: 100%;
}

.team-approach {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

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

.approach-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.approach-item p {
    color: #34495e;
    line-height: 1.6;
}

.values-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.values-split-reverse {
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

.values-image-left img {
    width: 100%;
}

.values-text-right {
    flex: 1;
}

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

.values-text-right p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.cta-secondary {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
}

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

.cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #229954;
    opacity: 1;
}

.services-hero {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.services-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.25rem;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 1.5rem;
    line-height: 1;
}

.service-pricing {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #ecf0f1;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
    margin-right: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

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

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.services-cta {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

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

.cta-centered p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #229954;
    opacity: 1;
}

.contact-hero {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.25rem;
    color: #34495e;
}

.contact-main {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-split {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

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

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

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #27ae60;
}

.info-block p {
    font-size: 1.125rem;
    color: #34495e;
    line-height: 1.6;
}

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

.contact-image img {
    width: 100%;
    border-radius: 8px;
}

.thanks-section {
    min-height: 500px;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.6;
}

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

.thanks-image {
    flex: 1;
    background-color: #fff3e0;
}

.thanks-image img {
    width: 100%;
    border-radius: 8px;
}

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

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

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

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
    color: #34495e;
}

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

.legal-container a {
    color: #27ae60;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #229954;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .values-split,
    .values-split-reverse,
    .form-split,
    .header-split,
    .story-split,
    .service-row,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

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

    .hero-left h1,
    .header-content h1,
    .services-intro h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }
}
