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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.cookie-banner.hidden {
    display: none;
}

.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: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    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: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.navbar {
    background-color: #2c3e50;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-ad-label {
    color: #ecf0f1;
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.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: #ecf0f1;
}

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

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

.hero-right {
    flex: 1;
    background-color: #bdc3c7;
    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;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.intro-right {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #2c3e50;
}

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

.service-price {
    padding: 0 1.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

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

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

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.form-left {
    flex: 1;
    padding: 3rem;
    background-color: #34495e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
}

.form-right {
    flex: 1;
    padding: 3rem;
    background-color: #ecf0f1;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
    padding: 1rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.trust-left {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.trust-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.trust-right p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

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

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

.footer-section a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    margin-bottom: 0.5rem;
}

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

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

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

.about-hero-left p {
    font-size: 1.15rem;
    color: #34495e;
}

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

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

.story-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.story-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.story-right {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.values-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.values-list li {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #34495e;
}

.values-list strong {
    color: #2c3e50;
}

.values-right {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

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

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #34495e;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-color: #ecf0f1;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-member p {
    font-size: 1rem;
    color: #34495e;
}

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

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

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

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-detail-left {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

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

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

.service-detail-right p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #34495e;
    color: #ffffff;
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

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

.contact-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #34495e;
}

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

.contact-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-block p {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.contact-right {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

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

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

.location-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1rem;
    color: #34495e;
}

.location-info {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-info p {
    margin-bottom: 0.5rem;
}

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

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

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

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.thanks-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

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

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

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #34495e;
    line-height: 1.8;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #bdc3c7;
}

.cookie-table th {
    background-color: #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .about-hero-split,
    .story-split,
    .values-split,
    .contact-split,
    .service-detail-split,
    .thanks-hero {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 100%;
    }
}