:root {
    --primary-color: #1A3C40;
    --secondary-color: #D4A12A;
    --text-color: #333333;
    --bg-color: #F5F5F5;
    --accent-color: #E74C3C;
    --light-color: #FFFFFF;
    --dark-color: #0A1E20;
    --gray-color: #CCCCCC;

    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;

    --container-width: 1200px;
    --section-padding: 80px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

ul,
ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: var(--section-padding);
}

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

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

.bg-primary h2,
.bg-primary h3,
.bg-primary h4 {
    color: var(--light-color);
}

.text-center {
    text-align: center;
}


.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    line-height: 1.5;
}

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

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

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

.btn-secondary:hover {
    background-color: #c08c1b;
    color: var(--dark-color);
}

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

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

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

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


.navbar {
    background-color: var(--light-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    margin-left: 30px;
}

.nav-menu a {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}


.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    min-width: 200px;
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    font-weight: normal;
}

.dropdown-menu a:hover::after,
.dropdown-menu a.active::after {
    display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: var(--bg-color);
}


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

.page-header h1 {
    color: var(--light-color);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}


.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    overflow: hidden;
}

.hero-video,
.hero::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}


.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}


.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-text ul {
    list-style-type: none;
}

.about-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content ul {
    list-style-type: none;
    margin-top: 15px;
}

.service-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.service-content ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}


.advantages-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.advantages-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.advantages-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.advantages-image img:hover {
    transform: scale(1.05);
}

.advantages-list {
    flex: 1;
}

.advantage-item {
    display: flex;
    margin-bottom: 30px;
}

.advantage-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(212, 161, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-text h3 {
    margin-bottom: 10px;
}


.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 60, 64, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
    flex: 1;
}

.form-container button {
    width: 100%;
    margin-top: 10px;
}


.iti {
    width: 100%;
}


.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-info:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 60, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-info h3 {
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 0;
}


footer {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-info p {
    opacity: 0.8;
    margin-top: 20px;
}

.footer-logo {
    height: 50px;
}

.footer-links h4 {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

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

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.7;
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--light-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 15px;
}

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


.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-settings.active {
    display: flex;
}

.cookie-settings-content {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings-header h3 {
    margin-bottom: 0;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.cookie-settings-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cookie-category-header h4 {
    margin-bottom: 5px;
}

.cookie-category-header p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.cookie-toggle label:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.cookie-toggle input:checked+label {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked+label:before {
    transform: translateX(24px);
}

.cookie-toggle.disabled {
    opacity: 0.6;
}

.cookie-settings-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: right;
}


.case-study {
    margin-bottom: 60px;
}

.case-study:last-child {
    margin-bottom: 0;
}

.case-study-content {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.case-study-image {
    height: 400px;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-text {
    padding: 30px;
}

.case-study-text.full-width {
    padding: 40px;
}

.case-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.case-meta span {
    display: flex;
    align-items: center;
}

.case-meta i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.case-study-text h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.case-study-text h4 {
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.case-metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.result-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-10px);
}

.result-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 60, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.result-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.results-cta {
    text-align: center;
    padding: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: var(--border-radius);
}

.results-cta h3 {
    color: var(--light-color);
    margin-bottom: 15px;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(26, 60, 64, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}


.practices-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.practices-text {
    flex: 1;
}

.practices-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.practices-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.link-card {
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.link-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 60, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.link-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.link-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.link-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.method-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-10px);
}

.method-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 60, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.method-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.implementation-content {
    display: flex;
    gap: 50px;
}

.implementation-text {
    flex: 1;
}

.implementation-cases {
    flex: 1;
}

.case-example {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.case-example:last-child {
    margin-bottom: 0;
}

.case-example h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-section {
    text-align: center;
}

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

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}


.methodology-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.methodology-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.methodology-text {
    flex: 1;
}

.methodology-principles {
    margin-top: 30px;
}

.principle {
    display: flex;
    margin-bottom: 25px;
}

.principle-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(26, 60, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.principle-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.principle-content h3 {
    margin-bottom: 10px;
}

.principle-content p {
    margin-bottom: 0;
}

.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background-color: var(--secondary-color);
}

.process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tools-content {
    display: flex;
    gap: 50px;
}

.tools-text {
    flex: 1;
}

.tools-certification {
    flex: 1;
}

.certification-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

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

.certification-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.standard-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.standard-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.standards-note {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}


.innovations-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 30px;
}

.innovations-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.innovations-text {
    flex: 1;
}

.innovation-quote {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.innovation-quote blockquote {
    font-style: italic;
    margin-bottom: 10px;
}

.innovation-quote cite {
    font-weight: 600;
    display: block;
    text-align: right;
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.innovation-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.innovation-card:hover {
    transform: translateY(-10px);
}

.innovation-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 60, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.innovation-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.case-study-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    overflow: hidden;
}

.case-study-card:last-child {
    margin-bottom: 0;
}

.case-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-header h3 {
    color: var(--light-color);
    margin-bottom: 0;
}

.case-tag {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.case-body {
    padding: 30px;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.future-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.future-card:hover {
    transform: translateY(-10px);
}

.future-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 60, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.future-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.future-note {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    margin-top: 20px;
}


.eco-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.eco-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.eco-text {
    flex: 1;
}

.eco-highlights {
    margin-top: 30px;
}

.eco-highlight {
    display: flex;
    margin-bottom: 20px;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(26, 60, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.highlight-content h3 {
    margin-bottom: 5px;
}

.highlight-content p {
    margin-bottom: 0;
}

.focus-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.focus-area {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.focus-area:hover {
    transform: translateY(-10px);
}

.focus-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 60, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.focus-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.eco-case {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    overflow: hidden;
}

.eco-case:last-child {
    margin-bottom: 0;
}

.eco-case h3 {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 20px 30px;
    margin-bottom: 0;
}

.eco-case-content {
    padding: 30px;
}

.eco-case-details p {
    margin-bottom: 15px;
}

.eco-case-details strong {
    color: var(--primary-color);
}


.contact-grid {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-methods {
    margin: 30px 0;
}

.contact-method {
    display: flex;
    margin-bottom: 25px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(26, 60, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.method-details h3 {
    margin-bottom: 5px;
}

.method-details p {
    margin-bottom: 0;
}

.regional-coverage {
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.regional-coverage h3 {
    margin-bottom: 15px;
}

.regional-coverage ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.regional-coverage ul li {
    position: relative;
    padding-left: 20px;
}

.regional-coverage ul li::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.contact-form-container {
    flex: 1;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.map-container {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    border: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-color);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle i::before {
    content: '\f068';
}


.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.document-section {
    margin-bottom: 40px;
}

.document-section:last-child {
    margin-bottom: 0;
}

.document-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.document-section h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.document-section h4 {
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cookie-table th,
.cookie-table td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background-color: var(--bg-color);
    font-weight: 600;
}

.cookie-settings-button {
    text-align: center;
    margin: 30px 0;
}


.thanks-section {
    text-align: center;
    padding: 80px 0;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(26, 60, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

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

.thanks-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 15px;
}

.thanks-details {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    text-align: left;
}

.thanks-details h2 {
    margin-bottom: 15px;
}

.thanks-details ul {
    list-style-type: none;
}

.thanks-details ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.thanks-details ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.thanks-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.related-content {
    text-align: center;
}

.related-content h2 {
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-10px);
}

.related-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 60, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.related-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.related-card h3 {
    margin-bottom: 15px;
}

.related-card p {
    margin-bottom: 20px;
}

.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-switcher a {
    padding: 0 10px;
}


@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-content,
    .advantages-content,
    .practices-content,
    .methodology-content,
    .tools-content,
    .implementation-content,
    .innovations-content,
    .eco-content,
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .case-study-content {
        flex-direction: column;
    }

    .case-metrics {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .regional-coverage ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        height: 70vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        width: 100%;
        background-color: var(--light-color);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 10px 0;
        background-color: var(--bg-color);
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-buttons button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .hero {
        height: 60vh;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .services-grid,
    .advantages-list,
    .quick-contact-grid,
    .results-grid,
    .methods-grid,
    .standards-grid,
    .innovations-grid,
    .future-grid,
    .focus-areas-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .case-metrics {
        flex-direction: column;
    }

    .metric {
        margin-bottom: 15px;
    }

    .legal-document {
        padding: 20px;
    }

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

    .regional-coverage ul {
        grid-template-columns: 1fr;
    }
}