* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5f3f;
    --secondary-color: #4a8a64;
    --accent-color: #7fb899;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f5f7f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #c73e1d;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.top-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    padding: 5px 10px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    padding: 80px 0 0 0;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    overflow: hidden;
    background-color: #c5d9cc;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
}

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.intro-content h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.image-full {
    width: 100%;
    overflow: hidden;
    background-color: #c5d9cc;
}

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

.services-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #c5d9cc;
}

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

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 25px 25px 15px 25px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0 25px 20px 25px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 25px 15px 25px;
}

.select-service {
    margin: 0 25px 25px 25px;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.benefits-section h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    flex: 1 1 calc(50% - 15px);
}

.benefit-item h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.form-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-wrapper > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.disclaimer-section {
    padding: 50px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.disclaimer-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject,
.btn-info {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-reject {
    background-color: transparent;
    border: 1px solid var(--bg-white);
    color: var(--bg-white);
}

.btn-info {
    background-color: transparent;
    color: var(--bg-white);
    text-decoration: underline;
}

.btn-accept:hover,
.btn-reject:hover,
.btn-info:hover {
    opacity: 0.8;
}

.page-header {
    background-color: var(--bg-light);
    padding: 80px 0 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: var(--text-light);
}

.about-intro {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #c5d9cc;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.experience-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.experience-section h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sectors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
}

.sector-item {
    flex: 1 1 calc(33.333% - 17px);
}

.sector-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.sector-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.methodology-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.methodology-section h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.methodology-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-item {
    flex: 1 1 calc(50% - 15px);
    display: flex;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--bg-light);
}

.services-detailed {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-img {
    flex: 1;
    background-color: #c5d9cc;
}

.service-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.service-pricing {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-pricing .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-comparison {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.service-comparison h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 15px;
}

.comparison-table td {
    font-size: 15px;
    color: var(--text-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.process-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.process-section h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    flex: 1 1 calc(50% - 15px);
}

.process-step h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.info-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

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

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.office-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.office-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.office-section p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.faq-section h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.alternative-contact {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.alternative-contact h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.alternative-contact p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.alt-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.alt-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.alt-link:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-details p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 10px;
}

.thanks-details strong {
    color: var(--secondary-color);
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.additional-info {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.additional-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.additional-info li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.additional-info li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.additional-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.additional-info a:hover {
    text-decoration: underline;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.legal-page {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 20px 25px;
}

.legal-page li {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

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

    .service-card {
        flex: 1 1 100%;
    }

    .benefits-layout {
        flex-direction: column;
    }

    .benefit-item {
        flex: 1 1 100%;
    }

    .about-layout {
        flex-direction: column;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

    .sectors-list {
        flex-direction: column;
    }

    .sector-item {
        flex: 1 1 100%;
    }

    .methodology-steps {
        flex-direction: column;
    }

    .step-item {
        flex: 1 1 100%;
    }

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

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

    .process-steps {
        flex-direction: column;
    }

    .process-step {
        flex: 1 1 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }

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

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
}

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

    .form-wrapper {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject,
    .btn-info {
        flex: 1;
    }
}
