/* Reset and Base Styles */
* {
    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;
}

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

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

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

a:hover {
    color: #2940b8;
}

/* Buttons */
.btn-primary {
    background: #3b51d5;
    color: white;
    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: 1rem;
}

.btn-primary:hover {
    background: #2940b8;
    transform: translateY(-2px);
    color: white;
}

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

.btn-secondary:hover {
    background: #3b51d5;
    color: white;
    transform: translateY(-2px);
}

.btn-cta {
    background: #3b51d5;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-cta:hover {
    background: #2940b8;
    color: white;
    transform: translateY(-1px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(57, 57, 57, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

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

.btn-accept {
    background: #3b51d5;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #2940b8;
}

.btn-decline {
    background: transparent;
    color: white;
    padding: 8px 16px;
    border: 1px solid white;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    background: white;
    color: #393939;
}

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

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

.brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #393939;
    text-decoration: none;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: #3b51d5;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3b51d5;
}

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 80px 20px 20px;
}

.mobile-menu.show {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list a {
    font-size: 1.25rem;
    font-weight: 500;
    color: #393939;
    text-decoration: none;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature img {
    width: 20px;
    height: 20px;
}

.feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #393939;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.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: 80px 0;
    background: #ffffff;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #393939;
    margin-bottom: 20px;
}

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

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

.service-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b51d5;
}

.service-icon {
    margin-bottom: 20px;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #393939;
    margin-bottom: 15px;
}

.service-card > p {
    color: #666;
    margin-bottom: 20px;
}

.service-image {
    margin: 20px 0;
}

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

.service-details h4 {
    color: #3b51d5;
    font-size: 1.125rem;
    margin: 20px 0 10px;
}

.service-details ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.service-details li {
    margin-bottom: 5px;
    color: #666;
}

/* Statistics Section */
.statistics {
    padding: 60px 0;
    background: #3b51d5;
    color: white;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: #f8f9ff;
}

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

.trust-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    margin-bottom: 20px;
}

.trust-icon img {
    width: 64px;
    height: 64px;
}

.trust-item h3 {
    color: #393939;
    margin-bottom: 15px;
}

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

/* Testimonials */
.testimonials h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #393939;
}

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-author strong {
    color: #393939;
    font-weight: 600;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background: #ffffff;
}

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

.about-subtitle {
    font-size: 1.25rem;
    color: #3b51d5;
    font-weight: 500;
}

.about-story h3 {
    color: #393939;
    margin-top: 40px;
    margin-bottom: 20px;
}

.philosophy-points {
    margin: 30px 0;
}

.philosophy-point {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 8px;
    border-left: 4px solid #3b51d5;
}

.philosophy-point h4 {
    color: #393939;
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.philosophy-point p {
    color: #666;
    margin: 0;
}

.methodology {
    margin: 30px 0;
}

.method-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
    background: #3b51d5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 8px;
    color: #393939;
}

.step-content p {
    color: #666;
    margin: 0;
}

.expertise-list {
    padding-left: 0;
    list-style: none;
}

.expertise-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b51d5;
    font-weight: 600;
}

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

.about-credentials {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 8px;
}

.credential {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

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

.credential strong {
    color: #393939;
    font-weight: 600;
}

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

/* Contact Preview Section */
.contact-preview {
    padding: 80px 0;
    background: #f8f9ff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.contact-info h2 {
    color: #393939;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-method img {
    width: 24px;
    height: 24px;
}

.contact-method strong {
    color: #393939;
    display: block;
    margin-bottom: 4px;
}

.contact-method span {
    color: #666;
    font-size: 0.9rem;
}

.quick-contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.quick-contact-form h3 {
    color: #393939;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b51d5;
}

.map-container {
    margin-top: 40px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

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

.contact-hero h1 {
    font-size: 3rem;
    color: #393939;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info-section h2 {
    color: #393939;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 8px;
}

.contact-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item h3 {
    color: #393939;
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 4px;
}

.contact-item small {
    color: #888;
    font-size: 0.85rem;
}

.opening-hours {
    margin-bottom: 40px;
}

.opening-hours h3 {
    color: #393939;
    margin-bottom: 20px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    background: white;
    border-radius: 4px;
    border-left: 3px solid #3b51d5;
}

.day {
    font-weight: 500;
    color: #393939;
}

.hours {
    color: #666;
}

.certifications h3 {
    color: #393939;
    margin-bottom: 20px;
}

.cert-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cert-badge img {
    width: 32px;
    height: 32px;
}

.cert-badge strong {
    color: #393939;
    display: block;
}

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

.contact-form-section h2 {
    color: #393939;
    margin-bottom: 30px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b51d5;
    box-shadow: 0 0 0 3px rgba(59, 81, 213, 0.1);
}

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

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

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

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    line-height: 1.4;
}

.map-section {
    padding: 60px 0;
    background: #f8f9ff;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #393939;
}

.map-container {
    position: relative;
    margin-bottom: 40px;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-info h3 {
    color: #393939;
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.map-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.btn-map {
    background: #3b51d5;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-map:hover {
    background: #2940b8;
    color: white;
}

.location-info h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #393939;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.transport-item img {
    width: 32px;
    height: 32px;
}

.transport-item h4 {
    color: #393939;
    margin-bottom: 5px;
    font-size: 1rem;
}

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

/* Legal Content Styles */
.legal-content {
    padding: 120px 0 80px;
    background: #ffffff;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-wrapper h1 {
    font-size: 2.5rem;
    color: #393939;
    text-align: center;
    margin-bottom: 40px;
}

.intro-section {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #3b51d5;
}

.intro-section p {
    margin-bottom: 15px;
}

.intro-section p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #3b51d5;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

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

.legal-section h2 {
    color: #393939;
    font-size: 1.75rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #3b51d5;
    padding-bottom: 10px;
}

.legal-section h3 {
    color: #393939;
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section h4 {
    color: #3b51d5;
    font-size: 1.125rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-section ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #666;
}

.contact-info {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #3b51d5;
}

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

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

.footer-section h4 {
    color: #3b51d5;
    margin-bottom: 20px;
}

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

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-brand-name {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b51d5;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #ccc;
}

.footer-contact strong {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4a4a4a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3b51d5;
    transform: translateY(-2px);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding-top: 30px;
}

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

.footer-legal p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    /* Statistics */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Trust */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .method-step {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Contact Preview */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-methods {
        gap: 15px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Contact Page */
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1.125rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-section {
        order: 2;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .transport-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Legal */
    .legal-wrapper {
        padding: 0 10px;
    }
    
    .legal-wrapper h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    /* Services */
    .service-card {
        padding: 20px;
    }
    
    .service-image img {
        height: 150px;
    }
    
    /* Statistics */
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    /* Contact */
    .contact-item {
        padding: 15px;
    }
    
    .cert-badge {
        padding: 12px;
    }
    
    /* Legal */
    .intro-section {
        padding: 20px;
    }
    
    .legal-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .mobile-menu,
    .hero-cta,
    .btn-primary,
    .btn-secondary,
    .btn-cta,
    .quick-contact-form,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12px;
        line-height: 1.4;
        color: #000;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .services,
    .trust,
    .about {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
}