/* 
* Kpuremeadow - Main Stylesheet
* Version: 1.0
* Last updated: December 2025
*/


:root {
    --primary: #2C3E50;
    --secondary: #E74C3C;
    --accent: #3498DB;
    --bg-light: #F5F7FA;
    --bg-dark: #1A252F;
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --border-color: #BDC3C7;
    --success: #2ECC71;
    --warning: #F39C12;
    --max-content-width: 800px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    color: var(--text-primary);
    background-color: #FFF;
    line-height: 1.6;
    font-size: 16px;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

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


.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    border: none;
}

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

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

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}


.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent);
}

.navbar-toggler {
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}


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

.hero-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

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

.hero-benefits li i {
    color: var(--success);
    margin-right: 0.75rem;
}

.hero-image {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 2.25rem;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    margin: 1rem auto 0;
}

.section-description {
    text-align: center;
    max-width: var(--max-content-width);
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}


.usp-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

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

.usp-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.usp-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}


.content-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 2rem;
}

.content-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.content-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.content-card ul {
    margin-top: 1rem;
}


.result-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.result-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.result-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 1rem;
}

.result-card p {
    padding: 0 1.5rem 1.5rem;
}


.process-timeline {
    max-width: var(--max-content-width);
    margin: 0 auto;
    position: relative;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    width: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.process-step {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
    flex-shrink: 0;
}

.process-content {
    padding-left: 2rem;
}

.process-content h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}


.report-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.report-list {
    list-style: none;
    padding: 0;
}

.report-list li {
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.report-list li:last-child {
    border-bottom: none;
}

.metric-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.metric-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.metric-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}


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

.contact-form-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    font-weight: 500;
}

.contact-form .form-control {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    justify-content: center;
}

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

.contact-item-center {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    justify-content: center;
}

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


.faq-section {
    background-color: white;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: var(--bg-light);
    color: var(--primary);
    font-weight: 500;
    padding: 1.25rem;
    border-radius: 4px !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}


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

.confidentiality-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.highlighted-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

.confidentiality-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.point-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.point-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.privacy-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}


.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

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

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.footer-contact .contact-item i {
    color: var(--secondary);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.footer-contact .contact-item p,
.footer-contact .contact-item a {
    color: white;
}

.footer-links h3,
.footer-legal h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li,
.footer-legal li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
}

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

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}


.page-header {
    padding: 5rem 0;
    background-color: var(--bg-light);
    margin-bottom: 2rem;
}

.page-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.page-description {
    text-align: center;
    max-width: var(--max-content-width);
    margin: 0 auto;
    color: var(--text-secondary);
}


.audit-type-block {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.audit-type-block:last-child {
    border-bottom: none;
}

.audit-type-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.audit-type-content {
    padding: 0 1rem;
}

.audit-type-content h2 {
    margin-bottom: 1rem;
}

.audit-type-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.audit-type-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}


.principles-section {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.principle-block {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.principle-block:last-child {
    border-bottom: none;
}

.principle-icon-container {
    text-align: center;
    margin-bottom: 2rem;
}

.principle-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.1);
}

.principle-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.principle-case-study {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.principle-case-study h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.commitment-section {
    background-color: var(--primary);
    padding: 5rem 0;
    margin-top: 4rem;
}

.commitment-section .section-title {
    color: white;
}

.commitment-section .section-title:after {
    background-color: var(--secondary);
}

.commitment-text {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}


.company-type-block {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.company-type-block:last-child {
    border-bottom: none;
}

.company-type-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.company-type-content {
    padding: 0 1rem;
}

.company-type-content h2 {
    margin-bottom: 1rem;
}

.company-type-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.company-type-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}


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

.article-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.article-description {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-link {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    margin-top: auto;
}

.article-link i {
    transition: all 0.3s ease;
}

.article-link:hover i {
    transform: translateX(5px);
}


.cta-section {
    background-color: var(--primary) !important;
    padding: 5rem 0;
    margin-top: 3rem;
}

.cta-title {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .btn-outline-primary {
    border-color: white;
    color: white;
}

.cta-section .btn-outline-primary:hover {
    background-color: white;
    color: var(--primary);
}


.article-content {
    max-width: var(--max-content-width);
    margin: 4rem auto;
    padding: 0 1rem;
}

.article-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.article-meta {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.article-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.article-body {
    line-height: 1.7;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

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

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 2rem 0;
}


.contact-information-section {
    padding-bottom: 4rem;
}

.contact-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.contact-details h2,
.contact-map h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-note {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.language-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
}

.language-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.language-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-areas-section {
    background-color: white;
}

.service-areas-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.service-areas-list {
    list-style: none;
    padding: 0;
}

.service-areas-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
}

.service-areas-list li i {
    color: var(--accent);
    margin-right: 1rem;
}

.service-areas-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}


.thank-you-section {
    padding: 5rem 0;
}

.thank-you-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

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

.thank-you-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.what-next {
    margin-bottom: 2.5rem;
}

.what-next h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;
    padding: 0;
    text-align: left;
}

.next-steps li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
}

.next-steps li i {
    color: var(--accent);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.return-home {
    margin-bottom: 2rem;
}


.legal-page-container {
    padding: 4rem 0;
}

.legal-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th, .cookie-table td {
    border: 1px solid var(--border-color);
    padding: 0.75rem;
}

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


#cookie-consent-modal {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
}

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

.cookie-consent-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.cookie-consent-header .close-button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.cookie-consent-body {
    margin-bottom: 1.5rem;
}

.cookie-options {
    margin-bottom: 1.5rem;
}

.cookie-option {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-option input {
    margin-right: 1rem;
}

.cookie-option label {
    margin-bottom: 0;
}

.cookie-consent-actions {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-settings-panel {
    display: none;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cookie-category {
    margin-bottom: 1.5rem;
}

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

.cookie-category-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.cookie-category-header .form-switch {
    padding-left: 2.5em;
}

.cookie-category-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
}


.modal-content {
    border-radius: 8px;
    border: none;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom-color: var(--border-color);
}

.modal-header .btn-close:focus {
    box-shadow: none;
}

.modal-title {
    font-size: 1.3rem;
}

.modal-footer {
    border-top-color: var(--border-color);
}


.iti {
    width: 100%;
}


@media (max-width: 991px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .process-timeline:before {
        left: 30px;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .principle-icon-container {
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .thank-you-content {
        padding: 2rem;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .process-timeline:before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .process-content {
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .metric-item {
        flex-direction: column;
    }
    
    .metric-icon {
        margin-bottom: 0.5rem;
    }
    
    .confidentiality-point {
        flex-direction: column;
    }
    
    .point-icon {
        margin-bottom: 1rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    #cookie-consent-modal {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1.5rem;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-consent-actions button {
        width: 100%;
    }
}