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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    text-align: center;
    margin: 0;
}

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a202c;
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 20px 0;
}

.nav-floating .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.nav-links {
    display: none;
    gap: 30px;
}

.nav-links li a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #2b6cb0;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2d3748;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section - Split Screen */
.hero-split {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-left,
.hero-right {
    width: 100%;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px 20px;
    background-color: #f7fafc;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 30px;
}

.hero-right {
    height: 400px;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.cta-primary {
    display: inline-block;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(43, 108, 176, 0.3);
}

.cta-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(43, 108, 176, 0.4);
}

.cta-secondary {
    display: inline-block;
    background-color: #48bb78;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #38a169;
}

.btn-secondary-outline {
    display: inline-block;
    border: 2px solid #2b6cb0;
    color: #2b6cb0;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background-color: #2b6cb0;
    color: #ffffff;
}

/* Intro Section */
.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-section p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Features Alternating - Split Screen Pattern */
.features-alternating {
    padding: 0;
}

.feature-row {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.feature-row-reverse {
    flex-direction: column;
}

.feature-image,
.feature-text {
    width: 100%;
}

.feature-image {
    height: 400px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-text {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #edf2f7;
}

.feature-text h3 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-text p {
    font-size: 1.0625rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.link-inline {
    color: #2b6cb0;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #2c5282;
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-header h2 {
    font-size: 2rem;
    color: #1a202c;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-card {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.trust-card h4 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 600;
}

.trust-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background-color: #edf2f7;
}

.testimonials-section h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.testimonial-block {
    margin-bottom: 30px;
}

.testimonial-block blockquote {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2b6cb0;
}

.testimonial-block p {
    font-size: 1.125rem;
    color: #2d3748;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-block cite {
    font-style: normal;
    color: #718096;
    font-size: 0.9375rem;
    font-weight: 600;
}

/* Services Pricing */
.services-pricing {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.0625rem;
    color: #4a5568;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #f7fafc;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2b6cb0;
    box-shadow: 0 8px 16px rgba(43, 108, 176, 0.15);
}

.service-card-featured {
    background-color: #ebf8ff;
    border-color: #2b6cb0;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    color: #2b6cb0;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-features li:last-child {
    border-bottom: none;
}

.btn-select-service {
    width: 100%;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2c5282;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.0625rem;
    color: #4a5568;
}

.booking-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    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: #2b6cb0;
}

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

.form-checkbox input {
    width: auto;
    margin-top: 4px;
}

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

.form-checkbox a {
    color: #2b6cb0;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background-color: #48bb78;
    color: #ffffff;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #38a169;
    transform: translateY(-2px);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    color: #ffffff;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Info Section */
.info-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.info-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-left h3 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-left p {
    font-size: 1.0625rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.info-right img {
    border-radius: 12px;
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.faq-section h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 1.125rem;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p,
.footer-col li {
    font-size: 0.9375rem;
    color: #cbd5e0;
    line-height: 1.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #a0aec0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-button {
    display: inline-block;
    background-color: #48bb78;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #38a169;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(72, 187, 120, 0.5);
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    gap: 40px;
}

.service-detail-reverse {
    flex-direction: column;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

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

.service-detail-content {
    width: 100%;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-price-large {
    font-size: 2.25rem;
    color: #2b6cb0;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 1.125rem;
    color: #1a202c;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-checklist {
    margin-bottom: 25px;
}

.service-checklist li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 25px;
}

.service-checklist li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

/* About Page */
.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-content {
    margin-bottom: 40px;
}

.story-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-content p {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-image img {
    border-radius: 12px;
    width: 100%;
}

.values-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.values-section h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
}

.value-item h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 5px;
    font-weight: 600;
}

.member-role {
    font-size: 1rem;
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.7;
}

.certifications-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.certifications-section h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 700;
}

.certifications-section p {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.numbers-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.numbers-section h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.number-card {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.number {
    font-size: 3rem;
    color: #2b6cb0;
    font-weight: 800;
    margin-bottom: 10px;
}

.number-card p {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
}

.philosophy-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.philosophy-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.philosophy-text h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 700;
}

.philosophy-text p {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.philosophy-image img {
    border-radius: 12px;
    width: 100%;
}

/* Contact Page */
.contact-main {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-block p {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-block a {
    color: #2b6cb0;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9375rem;
    color: #718096;
    font-style: italic;
    margin-top: 8px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.hours-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.hours-table td {
    padding: 12px 0;
    font-size: 1rem;
    color: #4a5568;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.transport-list {
    margin-top: 10px;
    margin-bottom: 20px;
}

.transport-list li {
    padding: 6px 0;
    color: #4a5568;
    position: relative;
    padding-left: 20px;
}

.transport-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.contact-map h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 15px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    padding: 30px 20px 20px;
}

.map-overlay p {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.map-note {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-faq {
    padding: 80px 20px;
    background-color: #f7fafc;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 20px;
    background-color: #f7fafc;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 800;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-steps {
    counter-reset: step-counter;
    list-style: none;
}

.thanks-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2b6cb0;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.thanks-service {
    background-color: #ebf8ff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #2b6cb0;
}

.thanks-note {
    background-color: #fef5e7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-note p {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.thanks-note a {
    color: #2b6cb0;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2c5282;
}

.thanks-extra {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-extra h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.thanks-extra p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-checklist {
    list-style: none;
}

.thanks-checklist li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 25px;
}

.thanks-checklist li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.thanks-contact {
    font-size: 1rem;
    color: #4a5568;
}

.thanks-contact a {
    color: #2b6cb0;
    font-weight: 600;
}

.thanks-testimonials {
    padding: 60px 20px;
    background-color: #ffffff;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 10px;
    font-weight: 800;
}

.legal-date {
    font-size: 0.9375rem;
    color: #718096;
    margin-bottom: 40px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.125rem;
    color: #1a202c;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal-content li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
}

.legal-content li:before {
    content: '•';
    position: absolute;
    left: -10px;
    color: #2b6cb0;
}

.legal-content a {
    color: #2b6cb0;
    text-decoration: underline;
}

.legal-back {
    margin-top: 50px;
    text-align: center;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background-color: #f7fafc;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    font-weight: 600;
    color: #1a202c;
}

.cookie-table td {
    color: #4a5568;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

    .hero-left,
    .hero-right {
        width: 50%;
    }

    .hero-right {
        height: auto;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .feature-row {
        flex-direction: row;
    }

    .feature-row-reverse {
        flex-direction: row-reverse;
    }

    .feature-image,
    .feature-text {
        width: 50%;
    }

    .feature-image {
        height: auto;
        min-height: 500px;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-card {
        width: calc(50% - 15px);
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .service-detail {
        flex-direction: row;
    }

    .service-detail-reverse {
        flex-direction: row-reverse;
    }

    .service-detail-image,
    .service-detail-content {
        width: 50%;
    }

    .service-detail-image {
        height: auto;
        min-height: 400px;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        width: calc(50% - 20px);
    }

    .numbers-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .number-card {
        width: calc(50% - 15px);
    }

    .info-split {
        flex-direction: row;
        align-items: center;
    }

    .info-left,
    .info-right {
        width: 50%;
    }

    .philosophy-split {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-text,
    .philosophy-image {
        width: 50%;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        width: 55%;
    }

    .contact-map {
        width: 45%;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .trust-card {
        width: calc(25% - 22.5px);
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(33.333% - 20px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        width: calc(33.333% - 27px);
    }

    .numbers-grid {
        flex-direction: row;
    }

    .number-card {
        width: calc(25% - 22.5px);
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        width: calc(25% - 22.5px);
    }
}

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

.service-card,
.trust-card,
.team-member {
    animation: fadeIn 0.6s ease-out;
}
