* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    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: 15px;
}

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

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

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

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

.btn-reject:hover {
    background: #fff;
    color: #2c3e50;
}

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

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

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

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

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #5a6c7d;
}

.hero-visual {
    flex: 1;
    background-color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    background-color: #bdc3c7;
}

.intro-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 40px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.services-split {
    display: flex;
    min-height: 800px;
    background: #f8f9fa;
}

.services-content {
    flex: 1.2;
    padding: 80px 60px;
}

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

.services-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.services-visual {
    flex: 0.8;
    background-color: #95a5a6;
}

.service-form {
    max-width: 700px;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    display: block;
    padding: 25px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card input[type="radio"] {
    display: none;
}

.service-card input[type="radio"]:checked + .service-info {
    border-left: 4px solid #3498db;
    padding-left: 20px;
}

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

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 10px;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.trust-split {
    display: flex;
    min-height: 500px;
}

.trust-visual {
    flex: 1;
    background-color: #95a5a6;
}

.trust-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ecf0f1;
}

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

.trust-list {
    list-style: none;
    margin-bottom: 30px;
}

.trust-list li {
    padding: 15px 0;
    font-size: 18px;
    color: #2c3e50;
    position: relative;
    padding-left: 30px;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.trust-note {
    font-size: 16px;
    color: #5a6c7d;
    font-style: italic;
}

.testimonials {
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: #5a6c7d;
}

.cta-split {
    display: flex;
    min-height: 400px;
    background: #34495e;
}

.cta-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

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

.cta-visual {
    flex: 1;
    background-color: #7f8c8d;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #34495e;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-secondary:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

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

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

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

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

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

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

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

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

.footer-section p {
    color: #bdc3c7;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #95a5a6;
}

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

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

.thanks-container p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.thanks-container .service-selected {
    font-weight: 600;
    color: #2c3e50;
    font-size: 22px;
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-container a:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.page-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
}

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

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

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

.page-container ul {
    margin: 20px 0 20px 30px;
}

.page-container ul li {
    margin-bottom: 12px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.contact-content {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    background-color: #95a5a6;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .services-split,
    .trust-split,
    .cta-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-visual,
    .intro-image,
    .services-visual,
    .trust-visual,
    .cta-visual,
    .contact-visual {
        min-height: 300px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

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