* {
    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;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

.btn-cookie-reject {
    background-color: #7f8c8d;
    color: white;
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.85;
}

.main-nav {
    background-color: #2c3e50;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-label {
    color: #e74c3c;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    background-color: rgba(231, 76, 60, 0.15);
    border-radius: 3px;
}

.hero-section {
    background-color: #34495e;
    color: #ffffff;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    background-color: #2c3e50;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.intro-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-wrapper p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.image-text-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 2rem;
    flex-wrap: wrap;
}

.section-image {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

.section-text {
    flex: 1;
    min-width: 300px;
}

.section-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.problem-section {
    padding: 4rem 2rem;
    background-color: #e8f4f8;
}

.problem-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.problem-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-left: 4px solid #e74c3c;
}

.problem-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.problem-card p {
    font-size: 1rem;
    color: #34495e;
}

.solution-intro {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.solution-content {
    max-width: 900px;
    margin: 0 auto;
}

.solution-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.solution-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.solution-content img {
    width: 100%;
    margin-top: 2rem;
    background-color: #bdc3c7;
}

.services-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #7f8c8d;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    background-color: #bdc3c7;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1rem;
    color: #34495e;
}

.service-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 1.5rem 1.5rem;
    color: #27ae60;
}

.btn-select-service {
    padding: 0.85rem 1.5rem;
    background-color: #3498db;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin: 0 1.5rem 1.5rem;
    transition: background-color 0.3s;
}

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

.benefits-section {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    color: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #27ae60;
}

.benefit-item p {
    font-size: 1rem;
}

.trust-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

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

.trust-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.trust-section a {
    color: #3498db;
    font-weight: 600;
}

.form-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.form-container h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #7f8c8d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-field label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-field input,
.form-field select {
    padding: 0.85rem;
    border: 1px solid #bdc3c7;
    font-size: 1rem;
    font-family: inherit;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fffbeb;
    border-top: 2px solid #f39c12;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    color: #95a5a6;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: #95a5a6;
    transition: color 0.3s;
}

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

.references {
    font-size: 0.85rem;
}

.references li {
    margin-bottom: 0.75rem;
}

.references a {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.page-hero {
    background-color: #34495e;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
}

.about-intro {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-content img {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.values-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.value-card p {
    font-size: 1rem;
    color: #34495e;
}

.story-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.story-wrapper img {
    width: 100%;
    margin-top: 2rem;
    background-color: #bdc3c7;
}

.achievements-section {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    color: white;
}

.achievements-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.achievements-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.achievement-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.achievement-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #27ae60;
}

.achievement-item p {
    font-size: 1.1rem;
}

.services-detail-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail {
    max-width: 1100px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

.service-detail-image img {
    width: 100%;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-content h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-detail-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.cta-section {
    padding: 4rem 2rem;
    background-color: #34495e;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #27ae60;
}

.contact-item p {
    font-size: 1.05rem;
    color: #34495e;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

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

.visit-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.visit-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.visit-section p {
    max-width: 800px;
    margin: 0 auto 1rem;
    text-align: center;
    font-size: 1.1rem;
    color: #34495e;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #ecf0f1;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: white;
    padding: 3rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.thanks-info {
    text-align: left;
    margin-top: 2rem;
}

.thanks-info p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.thanks-info ul {
    list-style: disc;
    margin-left: 2rem;
    margin-top: 1rem;
}

.thanks-info ul li {
    margin-bottom: 0.75rem;
}

.thanks-info a {
    color: #3498db;
    font-weight: 600;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .problem-grid,
    .services-wrapper,
    .benefits-list {
        flex-direction: column;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}