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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Sohne', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

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

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

ul li, ol li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

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

a:hover {
    color: #8fd448;
}

/* Buttons */
.btn-primary {
    background-color: #8fd448;
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #7bc33a;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(143, 212, 72, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #000;
    padding: 12px 24px;
    border: 2px solid #000;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: #000;
    color: #fff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    min-width: 200px;
}

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

.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: 600;
    color: #000;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #8fd448;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8fd448;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-link {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #000;
    font-weight: 500;
}

.mobile-menu .btn-primary {
    margin-top: 1rem;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7f7f7 0%, #fff 100%);
}

.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 {
    color: #000;
    margin-bottom: 1.5rem;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
}

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

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.service-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    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: 1.5rem;
}

.service-icon img {
    width: 60px;
    height: 60px;
}

.service-image {
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.service-card h3 {
    color: #000;
    margin-bottom: 1rem;
}

.service-card p {
    color: #555;
    margin-bottom: 1rem;
}

.service-card ul {
    margin-top: 1.5rem;
}

.service-card li {
    color: #666;
    padding-left: 0.5rem;
}

/* Key Figures Section */
.key-figures {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.key-figures h2 {
    margin-bottom: 3rem;
}

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

.figure-card {
    padding: 2rem;
    background: linear-gradient(135deg, #f7f7f7 0%, #fff 100%);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.figure-card:hover {
    transform: translateY(-3px);
}

.figure-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8fd448;
    display: block;
    margin-bottom: 0.5rem;
}

.figure-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.figure-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.trust-features {
    margin-top: 2rem;
}

.trust-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-feature img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.trust-feature h4 {
    color: #000;
    margin-bottom: 0.5rem;
}

.trust-feature p {
    color: #666;
    font-size: 0.95rem;
}

.trust-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.testimonial-author strong {
    color: #000;
    display: block;
    margin-bottom: 0.25rem;
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

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

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #555;
    margin-bottom: 1.5rem;
}

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

.step {
    text-align: center;
    padding: 1.5rem;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #8fd448;
    color: #000;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step h4 {
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    font-size: 0.9rem;
}

.values-list {
    margin-top: 1.5rem;
}

.values-list li {
    color: #555;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.values-list strong {
    color: #000;
}

.director-profile {
    background-color: #f7f7f7;
    border-radius: 12px;
    padding: 3rem;
    margin-top: 4rem;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: flex-start;
}

.profile-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.profile-text h3 {
    margin-bottom: 0.5rem;
}

.profile-text h4 {
    color: #8fd448;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.profile-text p {
    color: #555;
    margin-bottom: 1.5rem;
}

.profile-certifications {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-certifications span {
    background-color: #8fd448;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Quick Contact Section */
.quick-contact {
    padding: 100px 0;
    background-color: #f7f7f7;
}

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

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #555;
    margin-bottom: 0.25rem;
}

.contact-item small {
    color: #666;
    font-size: 0.9rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8fd448;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #8fd448;
    border-color: #8fd448;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #000;
    font-weight: bold;
    font-size: 12px;
}

.map-section {
    margin-top: 4rem;
}

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

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

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

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

.map-overlay p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f7f7f7 0%, #fff 100%);
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.2rem;
    color: #666;
}

.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.contact-info-detailed {
    padding-right: 2rem;
}

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

.transport-info {
    margin-top: 3rem;
}

.transport-info h3 {
    margin-bottom: 1.5rem;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.transport-item {
    background-color: #f7f7f7;
    padding: 1.5rem;
    border-radius: 8px;
}

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

.transport-item p {
    color: #666;
    font-size: 0.9rem;
}

.contact-form-container {
    background-color: #f7f7f7;
    padding: 2.5rem;
    border-radius: 12px;
}

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

.form-header h2 {
    margin-bottom: 1rem;
}

.form-header p {
    color: #666;
    font-size: 1.05rem;
}

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

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

.form-group small {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
}

.info-item img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.info-item p {
    font-size: 0.9rem;
    margin: 0;
}

.info-item strong {
    color: #000;
}

.map-section-full {
    padding: 80px 0;
    background-color: #f7f7f7;
}

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

.map-container-full {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container-full img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-info {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-width: 300px;
}

.location-details h3 {
    margin-bottom: 1rem;
    color: #000;
}

.location-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
}

.location-details .btn-secondary {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

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

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

.faq-item {
    background-color: #f7f7f7;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: #000;
}

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

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    background-color: #fff;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    margin-bottom: 1rem;
}

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

.legal-sections {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f7f7f7;
    border-radius: 12px;
}

.legal-section h2 {
    color: #000;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #8fd448;
}

.legal-section h3 {
    color: #000;
    margin: 2rem 0 1rem 0;
}

.legal-info p {
    color: #555;
    margin-bottom: 1rem;
}

.legal-info ul {
    margin-bottom: 1rem;
}

.legal-info li {
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-info strong {
    color: #000;
}

.legal-contact {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #8fd448;
    border-radius: 12px;
}

.legal-contact h2 {
    color: #000;
    margin-bottom: 1rem;
}

.legal-contact p {
    color: #000;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details strong {
    color: #000;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: #8fd448;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: #8fd448;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

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

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

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8fd448;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #8fd448;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.footer-copyright p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    z-index: 10000;
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-buttons .btn-primary {
    padding: 8px 16px;
    font-size: 14px;
}

.cookie-buttons .btn-secondary {
    padding: 8px 16px;
    font-size: 14px;
    border-color: #fff;
    color: #fff;
}

.cookie-buttons .btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

.cookie-link {
    color: #8fd448;
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-notice.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .about-content,
    .trust-content {
        gap: 3rem;
    }
    
    .contact-content,
    .contact-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    /* Hero */
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    /* Figures */
    .figures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .method-steps {
        grid-template-columns: 1fr;
    }
    
    /* Trust */
    .trust-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .transport-grid {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        position: static;
        margin-top: 1rem;
        background-color: #fff;
        backdrop-filter: none;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Cookie notice */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    /* Legal pages */
    .legal-sections {
        padding: 0 1rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .services,
    .about-section,
    .trust-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .figures-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-notice,
    .hero-buttons,
    .btn-primary,
    .btn-secondary,
    .social-links {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    h1, h2, h3, h4 {
        color: #000;
        page-break-after: avoid;
    }
    
    .legal-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

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

/* Focus States for Accessibility */
input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
    outline: 2px solid #8fd448;
    outline-offset: 2px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #8fd448;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth Scrolling Enhancement */
html {
    scroll-padding-top: 80px;
}

/* Selection Styling */
::selection {
    background-color: #8fd448;
    color: #000;
}

::-moz-selection {
    background-color: #8fd448;
    color: #000;
}