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

.navigation {
    background-color: #1a3a3a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.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;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    opacity: 0.7;
}

.ad-label {
    color: #a8d5a8;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.hero-section {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a3a3a 0%, #2d5f5f 100%);
    position: relative;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: #d4e8e8;
    line-height: 1.7;
}

.hero-image {
    max-width: 1000px;
    width: 100%;
    margin-top: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.intro-section {
    background-color: #f8fafa;
    padding: 5rem 2rem;
}

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

.intro-section h2 {
    font-size: 2.2rem;
    color: #1a3a3a;
    margin-bottom: 1.8rem;
    line-height: 1.3;
}

.intro-section p {
    font-size: 1.15rem;
    color: #4a5f6a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.image-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-section img {
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    object-fit: cover;
    background-color: #e8f2f2;
}

.image-caption {
    max-width: 700px;
    text-align: center;
}

.image-caption p {
    font-size: 1.1rem;
    color: #5a6f7a;
    font-style: italic;
}

.insight-section {
    background-color: #2d5f5f;
    padding: 6rem 2rem;
    color: #ffffff;
}

.insight-section h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.insight-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #d4e8e8;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #a8d5a8;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #d4e8e8;
    line-height: 1.4;
}

.services-preview {
    background-color: #f0f5f5;
    padding: 7rem 2rem;
}

.services-preview h2 {
    font-size: 2.5rem;
    color: #1a3a3a;
    margin-bottom: 3rem;
    text-align: center;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.service-card p {
    font-size: 1rem;
    color: #5a6f7a;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5f5f;
    margin: auto 1.5rem 1.5rem;
}

.cta-link {
    display: inline-block;
    text-align: center;
    color: #2d5f5f;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 1rem;
    transition: opacity 0.3s;
}

.cta-link:hover {
    opacity: 0.7;
}

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

.form-section h2 {
    font-size: 2.3rem;
    color: #1a3a3a;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section > .content-wrapper > p {
    text-align: center;
    font-size: 1.15rem;
    color: #5a6f7a;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8fafa;
    padding: 2.5rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid #d4e8e8;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d5f5f;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #2d5f5f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    background-color: #1a3a3a;
    padding: 6rem 2rem;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #a8d5a8;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d4e8e8;
    margin-bottom: 1rem;
}

.testimonial .author {
    font-size: 0.95rem;
    color: #a8d5a8;
    font-weight: 600;
}

.final-cta {
    background: linear-gradient(135deg, #2d5f5f 0%, #1a3a3a 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #d4e8e8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a3a3a;
    background-color: #a8d5a8;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #8fc58f;
    transform: translateY(-2px);
}

.footer {
    background-color: #0f2525;
    color: #d4e8e8;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a8bcbc;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

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

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #8fa5a5;
}

.footer-bottom p {
    margin-bottom: 0.8rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a3a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    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;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.cookie-btn.accept {
    background-color: #a8d5a8;
    color: #1a3a3a;
}

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

.page-header {
    background: linear-gradient(135deg, #2d5f5f 0%, #1a3a3a 100%);
    padding: 5rem 2rem 3rem;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-header p {
    font-size: 1.3rem;
    color: #d4e8e8;
}

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

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-content img {
    flex: 1;
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e8f2f2;
}

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

.about-text h2 {
    font-size: 2rem;
    color: #1a3a3a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a5f6a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-section {
    background-color: #f8fafa;
    padding: 6rem 2rem;
}

.values-section h2 {
    font-size: 2.3rem;
    color: #1a3a3a;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.value-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.4rem;
    color: #2d5f5f;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    color: #5a6f7a;
    line-height: 1.7;
}

.team-section {
    background-color: #2d5f5f;
    padding: 6rem 2rem;
    color: #ffffff;
}

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    color: #d4e8e8;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.team-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-stat .number {
    font-size: 3rem;
    font-weight: 700;
    color: #a8d5a8;
    margin-bottom: 0.5rem;
}

.team-stat .label {
    font-size: 1rem;
    color: #d4e8e8;
}

.process-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.process-section h2 {
    font-size: 2.3rem;
    color: #1a3a3a;
    margin-bottom: 3rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #a8d5a8;
    min-width: 60px;
}

.step h3 {
    font-size: 1.5rem;
    color: #1a3a3a;
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 1.05rem;
    color: #5a6f7a;
    line-height: 1.7;
}

.cta-about {
    background-color: #f0f5f5;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.2rem;
    color: #1a3a3a;
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.15rem;
    color: #5a6f7a;
    margin-bottom: 2rem;
}

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

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

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

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e8f2f2;
}

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

.service-info h2 {
    font-size: 2rem;
    color: #1a3a3a;
    margin-bottom: 1.2rem;
}

.service-info p {
    font-size: 1.1rem;
    color: #4a5f6a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    font-size: 1rem;
    color: #5a6f7a;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f5f;
    font-weight: 700;
}

.pricing-box {
    background-color: #f8fafa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2d5f5f;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #5a6f7a;
    margin-bottom: 0.3rem;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2d5f5f;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #7a8f9a;
    line-height: 1.5;
}

.additional-info {
    background-color: #f0f5f5;
    padding: 5rem 2rem;
}

.additional-info h2 {
    font-size: 2.3rem;
    color: #1a3a3a;
    margin-bottom: 3rem;
    text-align: center;
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.info-block {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-block h3 {
    font-size: 1.4rem;
    color: #2d5f5f;
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 1rem;
    color: #5a6f7a;
    line-height: 1.7;
}

.cta-services {
    background-color: #1a3a3a;
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-services p {
    font-size: 1.15rem;
    color: #d4e8e8;
    margin-bottom: 2rem;
}

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

.contact-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    color: #1a3a3a;
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: #2d5f5f;
    margin-bottom: 0.6rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #5a6f7a;
    line-height: 1.7;
}

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

.contact-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e8f2f2;
}

.contact-additional {
    background-color: #f8fafa;
    padding: 5rem 2rem;
}

.contact-additional h2 {
    font-size: 2.3rem;
    color: #1a3a3a;
    margin-bottom: 3rem;
    text-align: center;
}

.additional-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.additional-block {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.additional-block h3 {
    font-size: 1.4rem;
    color: #2d5f5f;
    margin-bottom: 1rem;
}

.additional-block p {
    font-size: 1.05rem;
    color: #5a6f7a;
    line-height: 1.7;
}

.cta-contact {
    background: linear-gradient(135deg, #2d5f5f 0%, #1a3a3a 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-contact p {
    font-size: 1.15rem;
    color: #d4e8e8;
    margin-bottom: 2rem;
}

.thanks-section {
    background-color: #ffffff;
    padding: 8rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: #2d5f5f;
    margin-bottom: 1.5rem;
}

.thanks-content > p {
    font-size: 1.2rem;
    color: #5a6f7a;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.thanks-info {
    background-color: #f8fafa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.5rem;
    color: #1a3a3a;
    margin-bottom: 1rem;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info li {
    font-size: 1.05rem;
    color: #5a6f7a;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.thanks-info li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5f5f;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a3a3a;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.95rem;
    color: #7a8f9a;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #2d5f5f;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #1a3a3a;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1.05rem;
    color: #4a5f6a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page ul,
.legal-page ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    color: #4a5f6a;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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