/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #393939;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #393939;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    text-decoration: none;
    color: #727efd;
    transition: color 0.3s ease;
}

a:hover {
    color: #5a67d8;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: #727efd;
    color: white;
}

.btn-primary:hover {
    background-color: #5a67d8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 126, 253, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #727efd;
    border: 2px solid #727efd;
}

.btn-secondary:hover {
    background-color: #727efd;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #393939;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: #393939;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #727efd;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #727efd;
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #393939;
    border-radius: 2px;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    padding: 140px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #393939;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #727efd;
}

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

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8faff;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.services-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #393939;
}

.service-image {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
}

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

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #666;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #727efd;
    font-weight: bold;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #727efd 0%, #5a67d8 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-card .stat-icon {
    margin-bottom: 1rem;
}

.stat-card svg {
    color: rgba(255, 255, 255, 0.8);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8faff;
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid #727efd;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.testimonial-author strong {
    color: #393939;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8faff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.certifications {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.certifications h3 {
    margin-bottom: 1.5rem;
    color: #393939;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cert-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.cert-item strong {
    display: block;
    color: #727efd;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cert-item span {
    font-size: 0.9rem;
    color: #666;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.about-image-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.about-image-overlay p {
    margin: 0;
    opacity: 0.9;
}

/* Contact Preview */
.contact-preview {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8faff;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
}

.contact-icon svg {
    color: #727efd;
}

.contact-method h4 {
    margin-bottom: 0.5rem;
    color: #393939;
}

.contact-method p {
    margin: 0;
    color: #666;
}

.quick-contact-form {
    background: #f8faff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-contact-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #393939;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #727efd;
    box-shadow: 0 0 0 3px rgba(114, 126, 253, 0.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #727efd 0%, #5a67d8 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-section h2 {
    margin-bottom: 2rem;
    color: #393939;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8faff;
    border-radius: 15px;
}

.contact-item .contact-icon {
    flex-shrink: 0;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-item .contact-icon svg {
    color: #727efd;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #393939;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.contact-note {
    font-size: 0.9rem;
    color: #727efd;
    font-weight: 500;
    margin-top: 0.5rem;
    display: block;
}

.certifications-contact {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8faff;
    border-radius: 15px;
}

.certifications-contact h3 {
    margin-bottom: 1.5rem;
    color: #393939;
}

.cert-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cert {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
}

.cert strong {
    color: #727efd;
}

.cert-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.contact-form-section {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #393939;
}

.contact-form > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #393939;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-overlay h3 {
    margin-bottom: 0.5rem;
    color: #393939;
}

.map-overlay p {
    margin-bottom: 1rem;
    color: #666;
}

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

.location-detail {
    padding: 1.5rem;
    background: #f8faff;
    border-radius: 15px;
}

.location-detail h4 {
    margin-bottom: 1rem;
    color: #393939;
}

.location-detail p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* FAQ Contact */
.faq-contact {
    padding: 80px 0;
    background: #f8faff;
}

.faq-contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #393939;
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-sections {
    padding: 0 20px;
}

.legal-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #393939;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #727efd;
}

.legal-section h3 {
    color: #393939;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h4 {
    color: #727efd;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-item {
    padding: 1.5rem;
    background: #f8faff;
    border-radius: 10px;
    border-left: 4px solid #727efd;
}

.info-item strong {
    color: #393939;
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.highlight-box {
    background: linear-gradient(135deg, #727efd 0%, #5a67d8 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.highlight-box p {
    margin: 0;
    opacity: 0.95;
}

.data-types,
.purposes,
.recipients,
.retention-periods,
.security-measures,
.rights {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.data-type,
.purpose,
.recipient,
.retention,
.measure,
.right {
    background: #f8faff;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #727efd;
}

.data-type h4,
.purpose h4,
.recipient h4,
.retention h4,
.measure h4,
.right h4 {
    color: #393939;
    margin-bottom: 1rem;
}

.data-type ul,
.purpose ul,
.measure ul {
    margin-left: 1rem;
}

.data-type li,
.purpose li,
.measure li {
    color: #666;
}

.purpose p,
.recipient p,
.retention p,
.right p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.breach-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.breach-notice h4 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.breach-notice p {
    color: #856404;
    margin: 0;
}

.rights-exercise {
    background: #e8f4fd;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.rights-exercise h4 {
    color: #393939;
    margin-bottom: 1rem;
}

.cookies-types {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    background: #f8faff;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #727efd;
}

.cookie-type h4 {
    color: #393939;
    margin-bottom: 1rem;
}

.cookie-type p {
    color: #666;
    line-height: 1.6;
}

.contact-legal,
.contact-dpo,
.cnil-contact,
.hosting-info,
.insurance-details,
.mediator-info {
    background: #f8faff;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #727efd;
}

.contact-legal p,
.contact-dpo p,
.cnil-contact p,
.hosting-info p,
.insurance-details p,
.mediator-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-content {
    max-width: 1000px;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-actions a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-actions a:hover {
    color: white;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-section ul li a.active {
    color: #727efd;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #727efd;
    color: white;
    transform: translateY(-2px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        transform: translateX(-100%);
        opacity: 0;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-container .btn-primary {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-list {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .quick-contact-form {
        padding: 2rem;
    }
    
    .legal-content {
        padding: 40px 0;
    }
    
    .map-overlay {
        position: static;
        margin-top: 1rem;
        border-radius: 10px;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.testimonial-card,
.stat-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #727efd;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .service-card {
        border: 1px solid #000;
    }
}

/* Print styles */
@media print {
    .header,
    .cookie-popup,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
    
    .legal-section {
        page-break-inside: avoid;
    }
}