* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 250px;
}

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

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

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-section {
    margin-bottom: 0;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 152, 219, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #ffffff;
}

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

.hero-overlay p {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 36px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.intro-section {
    background-color: #ecf0f1;
    padding: 80px 40px;
}

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

.intro-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.benefits-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.benefits-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.benefit-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 24px 24px 12px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 16px;
    color: #555555;
    margin: 0 24px 24px;
    line-height: 1.6;
}

.how-it-works {
    background-color: #2c3e50;
    padding: 100px 40px;
    color: #ffffff;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #ecf0f1;
}

.checklist {
    list-style: none;
    margin-top: 28px;
}

.checklist li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

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

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

.services-preview {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.services-layout {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    flex: 1;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.service-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.price {
    display: block;
    font-size: 28px;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 16px;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin: 0 auto;
    display: block;
    width: fit-content;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

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

.form-section > p {
    text-align: center;
    color: #555555;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    background-color: #ecf0f1;
    padding: 80px 40px;
}

.trust-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-section p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

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

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-container .service-selected {
    font-weight: 600;
    color: #3498db;
}

.page-header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.page-content h3 {
    font-size: 24px;
    color: #34495e;
    margin: 30px 0 16px;
    font-weight: 600;
}

.page-content p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.page-content ul {
    margin: 20px 0 20px 40px;
}

.page-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555555;
}

.service-list {
    margin: 40px 0;
}

.service-box {
    background-color: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-box h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-box .service-price {
    font-size: 32px;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.service-box p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-box ul {
    margin: 16px 0 0 20px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-info strong {
    color: #2c3e50;
    font-weight: 600;
}

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

    .main-nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .hero-overlay p {
        font-size: 16px;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}