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

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 0;
    text-align: center;
}

.ad-disclosure p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    padding: 80px 20px 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 30px;
}

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

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background-color: #dee2e6;
}

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

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.benefits-section {
    background-color: #ecf0f1;
    padding: 70px 20px;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.benefit-card p {
    font-size: 16px;
    color: #546e7a;
}

.approach-section {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #ffffff;
}

.approach-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #dee2e6;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-text {
    flex: 1;
}

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

.approach-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #546e7a;
}

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s;
}

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

.services-preview {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

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

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-image {
    flex: 1;
    min-width: 350px;
    background-color: #dee2e6;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

.service-info p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-secondary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.form-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

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

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

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 40px;
}

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

.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 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #546e7a;
    margin-bottom: 20px;
}

.author {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.final-cta {
    background-color: #2c3e50;
    padding: 80px 20px;
    text-align: center;
}

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

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

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #243342;
    border-radius: 6px;
}

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: #ecf0f1;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

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

.btn-cookie.accept:hover {
    background-color: #229954;
    transform: translateY(-1px);
}

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-1px);
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: #5dade2;
}

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

.page-header h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

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

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

.content-section ul,
.content-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.2s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.service-card-image {
    width: 100%;
    height: 220px;
    background-color: #dee2e6;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-content {
    padding: 30px;
}

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

.service-card-content p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
}

.service-card-price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.service-card-content ul {
    margin-left: 20px;
    margin-bottom: 0;
}

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

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

.contact-info p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 12px;
}

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

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

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

.thanks-container p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 15px;
}

.thanks-container .cta-primary {
    margin-top: 30px;
}

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

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

    .approach-section {
        flex-direction: column;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}