* {
    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: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.ad-notice {
    color: #f39c12;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(243, 156, 18, 0.1);
    border-radius: 4px;
    margin: 0 auto;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

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

.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, transform 0.2s ease;
    cursor: pointer;
}

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

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

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

.intro-split {
    display: flex;
    padding: 5rem 0;
}

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

.intro-left-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

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

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

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

.services-overview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

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

.services-header p {
    font-size: 1.2rem;
    color: #555;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

.service-card p {
    padding: 0 1.5rem;
    color: #555;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3498db;
    padding: 1rem 1.5rem 1.5rem;
}

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

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

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.form-left p {
    font-size: 1.2rem;
    color: #555;
}

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

.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,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    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;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    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, transform 0.2s ease;
}

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

.trust-split {
    display: flex;
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.trust-left {
    flex: 1;
    padding: 2rem 4rem 2rem 2rem;
}

.trust-left h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

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

.benefits-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.125rem;
    color: #2c3e50;
}

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

.trust-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
    font-style: normal;
}

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

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.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-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #bdc3c7;
}

.page-hero {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.25rem;
    color: #ecf0f1;
}

.about-split {
    display: flex;
    padding: 5rem 2rem;
}

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

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

.about-text {
    flex: 1;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #555;
}

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

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

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

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.value-item p {
    font-size: 1.125rem;
    color: #555;
}

.team-split {
    display: flex;
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-text {
    flex: 1;
    padding: 2rem 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.team-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #555;
}

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

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

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

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

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

.service-detail-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail-section.alt-layout {
    background-color: #f8f9fa;
}

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

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content h4 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content li {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin: 2rem 0;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-split {
    display: flex;
    padding: 5rem 2rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 1.125rem;
    color: #555;
}

.contact-note {
    padding: 1.5rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 1rem;
    color: #2c3e50;
}

.contact-map {
    flex: 1;
    background-color: #dfe6e9;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-additional {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.additional-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.additional-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.additional-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.additional-content li {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.thanks-section {
    display: flex;
    padding: 5rem 2rem;
    gap: 4rem;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.thanks-content p {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

.thanks-details {
    padding: 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.thanks-next ul {
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.thanks-next li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    color: #555;
}

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

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

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

.legal-page h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-date {
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

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

.legal-page p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.8;
}

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

.legal-page li {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
    color: #555;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    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: rgba(255, 255, 255, 0.1);
}

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

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

    .hero-left,
    .intro-left-text,
    .form-left,
    .form-right,
    .trust-left,
    .trust-right,
    .about-text,
    .team-text,
    .contact-info,
    .thanks-content {
        padding: 2rem;
    }

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

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-left h1,
    .page-hero h1 {
        font-size: 2rem;
    }

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

    .service-card,
    .value-item {
        min-width: 100%;
    }
}