
:root {
    --primary: #0A2E5C;
    --secondary: #4285B8;
    --accent: #E4A857;
    --bg-light: #F8F9FB;
    --bg-dark: #1D3557;
    --text-dark: #222832;
    --text-light: #F8F9FB;
    --error: #D64045;
    --success: #4E9F3D;
    --gray-light: #E2E8F0;
    --gray-medium: #94A3B8;
    --gray-dark: #475569;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --container-width: 1280px;
    --header-height: 90px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

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

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

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

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

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

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


.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 50px;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--secondary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.mobile-menu-toggle span:first-child {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:last-child {
    bottom: 0;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg);
    top: 11px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg);
    bottom: 11px;
}


.hero {
    padding: 6rem 0;
    position: relative;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}


.advantages {
    padding: 6rem 0;
    background-color: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.advantage-card {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border-radius: var(--radius);
}

.advantage-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.advantage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
}

.advantage-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}


.services {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.services-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.services-content {
    flex: 1;
}

.service-card {
    margin-bottom: 2rem;
}

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

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}


.why-choose {
    padding: 6rem 0;
    background-color: white;
}

.why-choose-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.why-choose-image {
    flex: 1;
}

.why-choose-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.why-choose-content {
    flex: 1;
}

.why-choose-content h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}


.consultation {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.consultation-wrapper {
    display: flex;
    align-items: stretch;
    gap: 4rem;
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.consultation-content {
    flex: 1;
    padding: 3rem;
}

.consultation-content h2 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.consultation-benefits {
    list-style: none;
    margin: 0;
}

.consultation-benefits li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.consultation-benefits li i {
    color: var(--secondary);
    margin-right: 1rem;
}

.consultation-form-container {
    flex: 1;
    padding: 3rem;
    background-color: var(--primary);
    color: var(--text-light);
}

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

.consultation-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.consultation-form input,
.consultation-form textarea,
.consultation-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

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

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

.consultation-form .checkbox input {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.3rem;
}

.consultation-form .checkbox label {
    font-weight: 400;
    margin-bottom: 0;
}

.consultation-form .checkbox a {
    color: var(--accent);
}

.consultation-form .checkbox a:hover {
    text-decoration: underline;
}

.consultation-form button {
    width: 100%;
}


.case-preview {
    padding: 6rem 0;
    background-color: white;
}

.case-preview-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.case-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.case-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-preview-card:hover .case-preview-image img {
    transform: scale(1.05);
}

.case-preview-content {
    padding: 2rem;
}

.case-preview-content h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.case-preview-content p {
    margin-bottom: 1.5rem;
}

.case-preview-more {
    text-align: center;
    margin-top: 3rem;
}


.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 5rem 0 1rem;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
}

.footer-info p {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 0.75rem;
    color: var(--accent);
}

.footer h3 {
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.25rem;
}

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

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

.footer a {
    color: var(--text-light);
}

.footer a:hover {
    color: var(--accent);
}

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


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--text-light);
    z-index: 1000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

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


.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

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

.cookie-settings-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

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

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-category-header h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-medium);
    transition: var(--transition);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
}

input:checked + .slider {
    background-color: var(--secondary);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.cookie-settings-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-policy-link {
    display: block;
    margin-top: 1.5rem;
    text-align: center;
}


.page-hero {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}


.about-intro,
.stages-intro,
.cases-intro {
    padding: 5rem 0;
    background-color: white;
}

.about-intro-wrapper,
.stages-intro-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-intro-content,
.stages-intro-content,
.cases-intro-content {
    flex: 1;
}

.about-intro-content h2,
.stages-intro-content h2,
.cases-intro-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-intro-image {
    flex: 1;
}

.about-intro-image img,
.stages-intro-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-story {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.story-item {
    display: flex;
    gap: 2rem;
}

.story-year {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    width: 100px;
}

.story-content h3 {
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.about-values {
    padding: 5rem 0;
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.about-expertise {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.about-expertise-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-expertise-image {
    flex: 1;
}

.about-expertise-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-expertise-content {
    flex: 1;
}

.about-expertise-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.expertise-list {
    list-style: none;
    margin: 0 0 1.5rem 0;
}

.expertise-list li {
    margin-bottom: 1rem;
    display: flex;
}

.expertise-list .check-icon {
    flex-shrink: 0;
    margin-right: 1rem;
    color: var(--secondary);
}

.about-approach {
    padding: 5rem 0;
    background-color: white;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.approach-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.approach-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.approach-item h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}


.stages-timeline {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.timeline-details {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.timeline-details.reverse {
    flex-direction: row-reverse;
}

.timeline-description {
    flex: 1.5;
}

.timeline-image {
    flex: 1;
}

.timeline-image img {
    border-radius: var(--radius);
    height: 100%;
    object-fit: cover;
}

.timeline-checklist {
    list-style: none;
    margin: 0;
}

.timeline-checklist li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.timeline-checklist li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.stages-benefits {
    padding: 5rem 0;
    background-color: white;
}

.stages-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}


.cta {
    padding: 5rem 0;
    background-color: var(--primary);
    color: var(--text-light);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.cta-content {
    flex: 2;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.cta-button {
    flex: 1;
    text-align: right;
}

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

.cta .btn-primary:hover {
    background-color: white;
}


.cases {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.case {
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 3rem;
}

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

.case-header {
    padding: 1.5rem 2rem;
    background-color: var(--primary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-header h2 {
    margin-bottom: 0;
    font-size: 1.75rem;
    color: white;
}

.case-tag {
    background-color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.case-content {
    padding: 2rem;
    display: flex;
    gap: 3rem;
}

.case-image {
    flex: 1;
}

.case-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.case-description {
    flex: 2;
}

.case-description h3 {
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--primary);
}

.case-description h3:first-child {
    margin-top: 0;
}

.results-list {
    list-style: none;
    margin: 0;
}

.results-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.result-icon {
    flex-shrink: 0;
    color: var(--secondary);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.articles {
    padding: 5rem 0;
    background-color: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.article-content {
    padding: 2rem;
}

.article-content h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.article-content p {
    margin-bottom: 1.5rem;
}


.contact-details {
    padding: 5rem 0;
    background-color: white;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-card {
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-map {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.contact-form-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-form-wrapper {
    display: flex;
    gap: 4rem;
}

.contact-form-content {
    flex: 1;
}

.contact-form-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-image {
    margin-top: 2rem;
}

.contact-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

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

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

.contact-form .checkbox input {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.3rem;
}

.contact-form .checkbox label {
    font-weight: 400;
    margin-bottom: 0;
}

.contact-form button {
    width: 100%;
}

.faq {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
}


.legal-content {
    padding: 5rem 0;
    background-color: white;
}

.policy-date {
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

.policy-section {
    margin-bottom: 3rem;
}

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

.policy-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.policy-section h3 {
    color: var(--secondary);
    margin: 1.5rem 0 1rem;
}

.cookie-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
}

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


.thanks-section {
    padding: 5rem 0;
    background-color: white;
}

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

.thanks-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 2rem;
}

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

.thanks-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.thanks-details {
    text-align: left;
    margin-bottom: 3rem;
}

.steps-list {
    list-style: none;
    margin: 0;
}

.steps-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.thanks-navigation {
    margin-top: 3rem;
}

.thanks-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}


.article {
    padding: 5rem 0;
    background-color: white;
}

.article-header {
    margin-bottom: 2rem;
}

.article-header h1 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

.article-intro {
    font-size: 1.25rem;
    max-width: 900px;
    margin-bottom: 2rem;
}

.article-main-image {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 3rem;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.article-section h3 {
    color: var(--secondary);
    margin: 2rem 0 1rem;
}

.article-quote {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--accent);
    margin: 2rem 0;
    font-size: 1.25rem;
    font-style: italic;
}

.article-quote p {
    margin-bottom: 0;
}

.article-footer {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}


.iti {
    width: 100%;
}


@media (max-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.35rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stages-benefits-grid,
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hero-content,
    .services-wrapper,
    .consultation-wrapper,
    .about-intro-wrapper,
    .about-expertise-wrapper,
    .stages-intro-wrapper,
    .contact-form-wrapper,
    .cta-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .values-grid,
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-details {
        flex-direction: column;
    }
    
    .timeline-details.reverse {
        flex-direction: column;
    }
    
    .case-content {
        flex-direction: column;
    }
    
    .case-image {
        margin-bottom: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        z-index: 100;
        padding: 6rem 2rem 2rem;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 101;
    }
    
    .case-preview-wrapper,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .advantages-grid,
    .stages-benefits-grid,
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    
    .story-item,
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .case-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
}