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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #3d5a80;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(61, 90, 128, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 30px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
    opacity: 0.95;
}

.intro-block {
    background: #f8f9fa;
    padding: 80px 30px;
}

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

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
}

.services-preview {
    padding: 90px 30px;
    background: #ffffff;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    background-color: #f8f9fa;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-content p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #3d5a80;
}

.process-section {
    background: #2c3e50;
    padding: 90px 30px;
}

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #ffffff;
}

.text-content p {
    font-size: 18px;
    color: #dee2e6;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.process-list li {
    font-size: 16px;
    color: #dee2e6;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.process-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #98c1d9;
    font-size: 20px;
}

.image-content {
    flex: 1;
    background-color: #343a40;
}

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

.testimonial-block {
    background: #e9ecef;
    padding: 70px 30px;
}

.testimonial-block blockquote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 22px;
    font-style: italic;
    color: #495057;
    line-height: 1.7;
}

.testimonial-block cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #6c757d;
}

.cta-section {
    background: #3d5a80;
    padding: 90px 30px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    color: #dee2e6;
    margin-bottom: 40px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-form input,
.main-form select,
.main-form textarea {
    padding: 16px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background: #ffffff;
    color: #2c3e50;
}

.main-form textarea {
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.additional-services {
    background: #ffffff;
    padding: 90px 30px;
}

.additional-services h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.service-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    padding: 35px;
    background: #f8f9fa;
    border-left: 5px solid #3d5a80;
}

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

.service-item p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #3d5a80;
}

.main-footer {
    background: #2c3e50;
    color: #dee2e6;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #98c1d9;
}

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

.cookie-btn {
    padding: 12px 30px;
    font-size: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background: #98c1d9;
    color: #2c3e50;
}

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

.page-hero {
    background: linear-gradient(135deg, #3d5a80, #2c3e50);
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.page-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #495057;
}

.page-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
}

.page-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.7;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    padding: 60px 30px;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3d5a80;
}

.info-block p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
}

.map-placeholder {
    flex: 1;
    background: #e9ecef;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 18px;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.services-list h1 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.service-detail {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.service-header {
    background: #3d5a80;
    color: #ffffff;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    font-size: 28px;
    margin: 0;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
}

.service-body {
    padding: 40px;
}

.service-body p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-body ul {
    margin-left: 25px;
}

.service-body li {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 10px;
}

.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 30px;
}

.about-section h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-section p {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-image {
    margin: 50px 0;
    background-color: #f8f9fa;
}

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

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 30px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.thanks-container p {
    font-size: 19px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #3d5a80;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-link:hover {
    background: #2c3e50;
}

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

    .hero-overlay h1 {
        font-size: 36px;
    }

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

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

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

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

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

    .service-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}