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

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

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.cookie-banner.active {
    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;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 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: #ffffff;
    color: #2c3e50;
}

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

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

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

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

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

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
    cursor: pointer;
    font-size: 1rem;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 5%;
    gap: 4rem;
    align-items: center;
}

.intro-left {
    flex: 1;
    background-color: #ecf0f1;
}

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

.intro-right {
    flex: 1;
}

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

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 6rem 0;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 5%;
}

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

.section-header-centered p {
    font-size: 1.2rem;
    color: #546e7a;
}

.service-card-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-text-right,
.service-text-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text-right h3,
.service-text-left h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-text-right p,
.service-text-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.form-section {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 5%;
}

.form-container {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

.form-container > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #dfe6e9;
    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: #3498db;
}

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 3rem 5%;
    margin: 4rem 0;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #546e7a;
}

.main-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;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

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

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

.about-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5%;
}

.about-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-split.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #546e7a;
}

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

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

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

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

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

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

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

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

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

.services-list {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5%;
}

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

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

.service-item p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

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

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

.contact-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 5%;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.info-block p {
    font-size: 1.1rem;
    color: #546e7a;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
    min-height: 400px;
    border-radius: 8px;
}

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

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

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

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

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: #546e7a;
}

.thanks-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 5%;
    text-align: center;
}

.thanks-box {
    background-color: #f8f9fa;
    padding: 4rem 3rem;
    border-radius: 8px;
}

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

.thanks-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.selected-service-display {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.selected-service-display strong {
    color: #2c3e50;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .intro-section {
        flex-direction: column;
    }

    .service-card-split {
        flex-direction: column;
    }

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

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

    .about-split.reverse {
        flex-direction: column;
    }

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

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