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

img {
    object-fit: cover;
}

.main-navigation {
    background: #2c3e50;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #95a5a6;
    border-left: 1px solid #34495e;
    padding-left: 2rem;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s;
    width: fit-content;
}

.cta-primary:hover {
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.intro-block {
    padding: 5rem 2rem;
    background: #34495e;
    color: #ecf0f1;
}

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

.intro-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.intro-block p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-preview {
    padding: 5rem 2rem;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 250px;
    background-color: #e0e0e0;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

.detail-section {
    padding: 5rem 2rem;
}

.dark-bg {
    background: #1a252f;
    color: #ecf0f1;
}

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

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #34495e;
}

.additional-services {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.service-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-item p {
    margin-bottom: 1.5rem;
    color: #555;
}

.service-item .price {
    margin-bottom: 1rem;
}

.testimonial-flow {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.testimonial-flow blockquote {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border-left: 4px solid #fff;
}

.testimonial-flow blockquote:last-child {
    margin-bottom: 0;
}

.testimonial-flow p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-flow cite {
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.9;
}

.consultation-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

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

.form-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #555;
}

.consultation-form {
    background: #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 textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-column p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom > p:last-child {
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 2rem;
    flex-wrap: wrap;
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: #fff;
}

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

.cookie-actions a {
    color: #3498db;
    text-decoration: none;
}

.cookie-actions a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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