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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

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

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

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

.ad-notice {
    font-size: 11px;
    color: #888;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2a2a2a;
}

.hero-split {
    display: flex;
    height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 60px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.hero-right {
    flex: 1;
    background-color: #2a2a2a;
}

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

.cta-primary:hover {
    background: #c0392b;
}

.cta-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #e74c3c;
    text-decoration: none;
    border: 2px solid #e74c3c;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #e74c3c;
    color: #ffffff;
}

.intro-section {
    padding: 80px 20px;
    text-align: center;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.services-split {
    padding: 60px 20px;
}

.split-row {
    display: flex;
    margin-bottom: 80px;
    gap: 40px;
}

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

.split-image {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    background-color: #2a2a2a;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.trust-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.trust-grid {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    color: #555;
}

.form-section {
    padding: 80px 20px;
}

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

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 12px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    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: #e74c3c;
}

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

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

.main-footer {
    background: #2a2a2a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #e74c3c;
}

.footer-col p {
    color: #ccc;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept {
    background: #e74c3c;
    color: #ffffff;
}

.btn-accept:hover {
    background: #c0392b;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #2a2a2a;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-box {
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.page-header {
    padding: 80px 20px 40px;
    text-align: center;
    background: #f8f9fa;
}

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

.page-header p {
    font-size: 18px;
    color: #555;
}

.content-section {
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    margin-top: 40px;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 30px;
}

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

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

.content-section li {
    margin-bottom: 8px;
    color: #555;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    background-color: #2a2a2a;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

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

.value-card {
    flex: 1;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    flex: 0 0 calc(50% - 20px);
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

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

.service-card .price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.contact-info-section {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-col {
    flex: 1;
}

.contact-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.contact-item p {
    font-size: 16px;
    color: #555;
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

    .split-row,
    .split-row.reverse {
        flex-direction: column;
    }

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

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

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

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

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

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

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