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

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

.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;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

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

.navbar {
    background-color: #34495e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.ad-disclosure {
    color: #ecf0f1;
    font-size: 12px;
    padding: 5px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

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

.nav-menu a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.85), rgba(44, 62, 80, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: #fff;
    padding: 0 30px;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

.intro-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

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

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

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
}

.problem-section {
    background-color: #2c3e50;
    color: #fff;
    padding: 80px 0;
}

.full-width-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.full-width-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
}

.solution-section {
    background-color: #fff;
    padding: 100px 0;
}

.solution-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.solution-wrapper img {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    object-fit: cover;
}

.solution-content {
    flex: 1;
}

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

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

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #444;
}

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

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

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

.trust-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.testimonial .author {
    font-weight: bold;
    color: #34495e;
    font-size: 15px;
}

.services-preview {
    background-color: #fff;
    padding: 90px 0;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 30px;
}

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

.services-header p {
    font-size: 18px;
    color: #666;
}

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 350px;
    max-width: 420px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px;
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .price {
    padding: 0 25px;
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service-btn {
    margin: 0 25px 25px;
    padding: 15px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.process-section {
    background-color: #34495e;
    color: #fff;
    padding: 80px 0;
}

.process-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.process-wrapper h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #ecf0f1;
}

.form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

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

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

.selected-service-info {
    background-color: #e8f8f5;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    border-left: 4px solid #27ae60;
}

.selected-service-info p {
    margin: 0;
    color: #2c3e50;
}

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

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

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

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

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

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

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 50px 0;
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

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

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px 0;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 30px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

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

.thanks-container .selected-service-display {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin: 30px 0;
}

.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

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

.contact-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 30px;
}

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

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

.contact-block {
    flex: 1;
    min-width: 300px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #34495e;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

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

    .solution-wrapper {
        flex-direction: column;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .services-cards {
        flex-direction: column;
        align-items: center;
    }
}