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

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

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #2980b9;
}

.hero-split {
    display: flex;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 48px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2980b9;
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #2573a7;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2980b9;
    padding: 12px 28px;
    border: 2px solid #2980b9;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
}

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

.intro-section {
    padding: 80px 24px;
    background-color: #fff;
}

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

.intro-container h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.intro-container p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.split-features {
    display: flex;
    min-height: 50vh;
}

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

.feature-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 48px;
    background-color: #fff;
}

.feature-content h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.8;
}

.services-preview {
    padding: 80px 24px;
    background-color: #e8ecef;
}

.services-preview-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-preview-header h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.services-preview-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 20px;
}

.card-link {
    color: #2980b9;
    font-weight: 600;
    display: inline-block;
    transition: color 0.2s;
}

.card-link:hover {
    color: #2573a7;
}

.cta-section {
    padding: 80px 24px;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.testimonials {
    padding: 80px 24px;
    background-color: #fff;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-container h2 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 48px;
}

.testimonials-split {
    display: flex;
    gap: 40px;
}

.testimonial-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.testimonial-text {
    font-size: 16px;
    color: #444;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.footer {
    background-color: #1a252f;
    color: #ccc;
    padding: 64px 24px 32px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h5,
.footer-contact h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-bottom {
    max-width: 1100px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cookie-accept {
    background-color: #2980b9;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #2573a7;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    font-size: 13px;
    color: #7fb3d5;
}

.cookie-link:hover {
    color: #fff;
}

.page-header {
    background-color: #f8f9fa;
    padding: 64px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 64px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 16px;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-section ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.7;
}

.services-full {
    padding: 64px 24px;
    background-color: #fff;
}

.services-full-container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid #e5e5e5;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-item-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.service-item-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.service-item-content h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-item-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-item-content .price-large {
    font-size: 28px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}

.service-features li {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.contact-split {
    display: flex;
    min-height: 60vh;
}

.contact-info {
    flex: 1;
    background-color: #2c3e50;
    color: #fff;
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 18px;
}

.contact-form-section {
    flex: 1;
    padding: 64px 48px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.2s;
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background-color: #2980b9;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    background-color: #f8f9fa;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.thanks-container h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.selected-service {
    background-color: #fff;
    padding: 20px 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.selected-service span {
    font-weight: 600;
    color: #2980b9;
}

.about-intro {
    display: flex;
    gap: 48px;
    padding: 64px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #34495e;
}

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

.values-section {
    padding: 64px 24px;
    background-color: #e8ecef;
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
}

.values-container h2 {
    text-align: center;
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 48px;
}

.values-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 32px;
    background-color: #fff;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-content {
        padding: 48px 24px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

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

    .feature-content {
        padding: 48px 24px;
    }

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

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

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

    .contact-info {
        padding: 48px 24px;
    }

    .contact-form-section {
        padding: 48px 24px;
    }

    .service-item {
        flex-direction: column;
    }

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

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

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