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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #4CAF50;
    color: white;
}

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

.btn-cookie-reject {
    background: #666;
    color: white;
}

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 4px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #4CAF50;
}

.hero-full {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 48px;
    max-width: 900px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 700px;
}

.intro-block {
    padding: 80px 40px;
    background: #f9f9f9;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

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

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.services-preview {
    padding: 80px 40px;
    background: #fff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin: 0 20px 15px;
    color: #666;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin: 0 20px 20px;
}

.why-us-block {
    padding: 80px 40px;
    background: #2c3e50;
    color: #fff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #3a4f5f;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #45a049;
}

.form-section {
    padding: 80px 40px;
    background: #f4f4f4;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #45a049;
}

.trust-section {
    padding: 60px 40px;
    background: #fff9e6;
}

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

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
}

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
}

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

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

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

.footer-column ul li a:hover {
    color: #4CAF50;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.page-header {
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #3a4f5f 100%);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detailed {
    padding: 60px 40px;
    background: #f9f9f9;
}

.service-full {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.service-content-left {
    flex: 1;
    padding: 40px;
}

.service-content-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.service-img-right {
    flex: 1;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.price-box {
    margin-top: 30px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: bold;
    color: #4CAF50;
}

.cta-bottom {
    padding: 80px 40px;
    background: #4CAF50;
    color: #fff;
    text-align: center;
}

.cta-bottom h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-bottom p {
    font-size: 20px;
    margin-bottom: 25px;
}

.about-intro {
    padding: 80px 40px;
    background: #fff;
}

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

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

.team-section {
    padding: 80px 40px;
    background: #f4f4f4;
}

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

.team-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.team-content p {
    margin-bottom: 20px;
}

.contact-info-section {
    padding: 80px 40px;
    background: #fff;
}

.contact-info-section h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-details {
    font-size: 18px;
    line-height: 2;
    color: #555;
}

.contact-details strong {
    color: #2c3e50;
}

.legal-page {
    padding: 80px 40px;
    background: #fff;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #333;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
    color: #555;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
    text-align: center;
}

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

.thanks-page p {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-page .service-info {
    font-size: 22px;
    font-weight: bold;
    margin: 30px 0;
    padding: 20px 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
}

.thanks-page .btn-primary {
    background: #fff;
    color: #4CAF50;
    margin-top: 20px;
}

.thanks-page .btn-primary:hover {
    background: #f0f0f0;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

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

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

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

    .service-img-right {
        min-height: 250px;
        width: 100%;
    }
}