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

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

.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: #2c3e50;
    text-decoration: none;
}

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

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

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

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

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

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

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

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

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.8;
}

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

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

.services-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.services-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.service-card {
    flex: 0 1 calc(33.333% - 2rem);
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.service-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3498db;
    padding: 0 1.5rem;
    margin-top: auto;
}

.select-service {
    margin: 1.5rem;
    padding: 0.875rem 1.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a252f;
}

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

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

.trust-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-left p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #ecf0f1;
}

.trust-right {
    flex: 1;
    background-color: #34495e;
    overflow: hidden;
}

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

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

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

.form-container > p {
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column p {
    color: #bbb;
    line-height: 1.7;
}

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

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

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

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

.disclaimer {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.875rem;
    color: #888;
    line-height: 1.6;
}

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: #6c7a7b;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

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

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

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

.about-left {
    flex: 1;
    background-color: #dfe6ec;
    overflow: hidden;
}

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

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

.about-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-right p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.8;
}

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

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

.values-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.values-left p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.8;
}

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

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

.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.certifications {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

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

.cert-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.cert-item p {
    color: #555;
    line-height: 1.7;
}

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

.service-detail-split {
    display: flex;
    margin-bottom: 4rem;
}

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

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

.service-detail-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-left p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.8;
}

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

.service-detail-right {
    flex: 1;
    background-color: #dce4ea;
    overflow: hidden;
}

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

.cta-section {
    background-color: #3498db;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

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

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

.cta-secondary:hover {
    background-color: #ecf0f1;
}

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

.contact-info {
    flex: 1;
    padding: 5rem 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #3498db;
}

.contact-item p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: #dfe6ec;
    overflow: hidden;
}

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

.service-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.service-area h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-area p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 70vh;
}

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

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

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.8;
}

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

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

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

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

.btn-secondary:hover {
    background-color: #1a252f;
}

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

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

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

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

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

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

.legal-page p {
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.8;
}

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

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: #444;
    line-height: 1.7;
}

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

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

    .hero-left,
    .intro-left,
    .trust-left,
    .about-right,
    .values-left,
    .service-detail-left,
    .contact-info,
    .thanks-content {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

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

    .certifications {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

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