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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    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;
}

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

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

.btn-accept {
    background-color: #00b894;
    color: #ffffff;
}

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

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

.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: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #636e72;
    padding: 0.25rem 0.75rem;
    border: 1px solid #dfe6e9;
    border-radius: 3px;
    background-color: #f8f9fa;
}

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

.header-right a {
    color: #2d3436;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #00b894;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 5rem 5% 5rem 5%;
    background-color: #f8f9fa;
}

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

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #636e72;
    max-width: 500px;
}

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

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

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

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

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

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.intro-narrow p {
    font-size: 1.125rem;
    color: #636e72;
    line-height: 1.8;
}

.services-split {
    background-color: #f8f9fa;
}

.service-item {
    display: flex;
    min-height: 500px;
}

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

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

.service-item:nth-child(even) .service-content {
    background-color: #f8f9fa;
}

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

.service-content p {
    font-size: 1.125rem;
    color: #636e72;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #00b894;
    margin-bottom: 1.5rem;
    display: block;
}

.select-service {
    padding: 0.875rem 1.75rem;
    background-color: #2d3436;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #1a1f21;
    transform: translateX(5px);
}

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

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

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

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

.form-container h2 {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    color: #b2bec3;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #636e72;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #2d3436;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #00b894;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.value-card {
    flex: 1;
    text-align: center;
}

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

.value-card p {
    color: #636e72;
    font-size: 1rem;
    line-height: 1.6;
}

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

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #dfe6e9;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.footer-col p,
.footer-col a {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #00b894;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #636e72;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: #95a5a6;
    max-width: 900px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.contact-page {
    padding: 5rem 5%;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d3436;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

.contact-detail p {
    color: #636e72;
    font-size: 1rem;
}

.contact-map {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #636e72;
}

.about-hero {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.about-hero p {
    font-size: 1.25rem;
    color: #636e72;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 4rem 5%;
}

.about-section {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.about-section p {
    font-size: 1.125rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.services-page {
    padding: 5rem 5%;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.services-header p {
    font-size: 1.25rem;
    color: #636e72;
}

.legal-page {
    padding: 5rem 5%;
}

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

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

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

.legal-content p {
    margin-bottom: 1rem;
    color: #636e72;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    color: #636e72;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.thanks-page {
    padding: 10rem 5%;
    text-align: center;
    background-color: #f8f9fa;
    min-height: 80vh;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #00b894;
}

.thanks-content p {
    font-size: 1.25rem;
    color: #636e72;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-content .cta-primary {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-split,
    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

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

    .values-grid {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

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