* {
    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-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.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: 250px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.hero-section {
    height: 85vh;
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

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

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

.intro-section {
    background-color: #f8f9fa;
}

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.4;
    color: #2c3e50;
}

.intro-section p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #34495e;
}

.story-section {
    background-color: #ffffff;
}

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

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #34495e;
}

.story-image {
    flex: 1;
    background-color: #ecf0f1;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-section {
    background-color: #ecf0f1;
}

.insight-section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-section p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #34495e;
}

.insight-box {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid #27ae60;
}

.insight-box p {
    font-size: 18px;
    margin-bottom: 20px;
}

.insight-box ul {
    list-style: none;
    padding-left: 0;
}

.insight-box li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

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

.cta-section-primary {
    background-color: #27ae60;
    color: #ffffff;
}

.cta-card {
    text-align: center;
    padding: 20px;
}

.cta-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 19px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #27ae60;
    padding: 16px 40px;
    border: 2px solid #27ae60;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.benefits-section {
    background-color: #ffffff;
}

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

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

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

.benefit-card img {
    width: 100%;
    height: 250px;
    display: block;
}

.benefit-card h4 {
    font-size: 22px;
    padding: 25px 25px 15px 25px;
    color: #2c3e50;
}

.benefit-card p {
    padding: 0 25px 25px 25px;
    font-size: 16px;
    color: #34495e;
}

.testimonials-section {
    background-color: #34495e;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 34px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonial-block {
    margin-bottom: 40px;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-block blockquote {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-block cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.services-section {
    background-color: #f8f9fa;
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #34495e;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
}

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

.service-card p {
    padding: 0 25px 20px 25px;
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    padding: 15px 25px;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 14px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    background-color: #ecf0f1;
}

.form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

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

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

.trust-section {
    background-color: #ffffff;
}

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

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

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

.trust-item p {
    font-size: 17px;
    color: #34495e;
}

.final-cta-section {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.final-cta-section .btn-primary {
    background-color: #27ae60;
    color: #ffffff;
}

.final-cta-section .btn-primary:hover {
    background-color: #229954;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #7f8c8d;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.page-header {
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
    padding: 80px 40px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.lead-text {
    font-size: 20px;
    opacity: 0.9;
}

.content-section {
    background-color: #ffffff;
}

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

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

.image-section {
    background-color: #ecf0f1;
    padding: 0;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #27ae60;
}

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

.value-card p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.6;
}

.team-section {
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 350px;
    display: block;
}

.team-member h3 {
    font-size: 22px;
    padding: 20px 20px 10px 20px;
    color: #2c3e50;
}

.team-member p {
    font-size: 16px;
    padding: 0 20px 25px 20px;
    color: #7f8c8d;
}

.cta-section-simple {
    background-color: #27ae60;
    color: #ffffff;
    text-align: center;
}

.cta-section-simple h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.cta-section-simple p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section-simple .btn-primary {
    background-color: #ffffff;
    color: #27ae60;
}

.services-detail-section {
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-card:last-child {
    margin-bottom: 0;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 25px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-detail-content li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #34495e;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.info-section {
    background-color: #f8f9fa;
}

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

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

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #27ae60;
}

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

.contact-section {
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

.contact-block p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-map img {
    width: 100%;
    height: auto;
    display: block;
}

.map-caption {
    padding: 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.map-caption p {
    font-size: 15px;
    color: #7f8c8d;
}

.faq-section {
    background-color: #f8f9fa;
}

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

.faq-item {
    margin-bottom: 30px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

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

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

.thanks-section {
    background-color: #ffffff;
    min-height: 60vh;
}

.thanks-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-lead {
    font-size: 20px;
    margin-bottom: 40px;
    color: #34495e;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info {
    margin-bottom: 40px;
    text-align: left;
}

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

.thanks-info ol {
    margin-left: 20px;
}

.thanks-info li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #34495e;
    line-height: 1.6;
}

.thanks-contact {
    background-color: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-contact p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.additional-info-section {
    background-color: #f8f9fa;
}

.additional-info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.additional-info-section > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #34495e;
}

.info-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #27ae60;
}

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

.info-card p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.legal-content {
    background-color: #ffffff;
}

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

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

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #34495e;
    line-height: 1.7;
}

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

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
    line-height: 1.6;
}

.legal-content a {
    color: #27ae60;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    margin: 30px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #bdc3c7;
}

.cookie-table th {
    background-color: #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 15px;
    color: #34495e;
}

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

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

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .container-narrow,
    .container-wide {
        padding: 50px 20px;
    }

    .story-grid,
    .contact-grid,
    .service-detail-card {
        flex-direction: column;
    }

    .benefits-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .process-steps,
    .info-cards {
        flex-direction: column;
    }

    .service-card,
    .value-card {
        min-width: 100%;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}