* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a:hover {
    color: #2980b9;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #3498db;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.cta-secondary {
    background-color: #27ae60;
    color: #ffffff;
}

.cta-secondary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.intro-section {
    padding: 5rem 5%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.intro-text {
    flex: 2;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555;
}

.value-split {
    display: flex;
    align-items: center;
}

.value-image {
    flex: 1;
    overflow: hidden;
}

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

.value-content {
    flex: 1;
    padding: 4rem 5%;
    background-color: #ecf0f1;
}

.value-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.value-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.approach-section {
    padding: 5rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-card p {
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header p {
    font-size: 1.2rem;
    color: #555;
}

.services-split-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    gap: 2rem;
}

.service-info {
    flex: 2;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-info p {
    color: #555;
    line-height: 1.7;
}

.service-price {
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.btn-select {
    padding: 0.8rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.testimonial-split {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.testimonial-split.reverse {
    flex-direction: row-reverse;
}

.testimonial-content {
    flex: 1;
    padding: 3rem;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    border-left: 4px solid #3498db;
    padding-left: 2rem;
}

.testimonial-content cite {
    font-size: 1.1rem;
    color: #555;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.why-now-section {
    padding: 5rem 5%;
    background-color: #ecf0f1;
}

.why-now-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.why-content-split {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-left {
    flex: 1;
}

.why-left p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.why-right {
    flex: 1;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
    font-size: 1.05rem;
    color: #2c3e50;
}

.contact-form-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-header p {
    font-size: 1.2rem;
    color: #555;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px 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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta-section {
    padding: 6rem 5%;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
    color: #95a5a6;
}

.page-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.story-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
}

.story-content {
    flex: 1;
    padding-right: 3rem;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.mission-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.mission-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mission-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mission-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.mission-card p {
    color: #555;
    line-height: 1.7;
}

.values-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
}

.values-split.reverse {
    flex-direction: row-reverse;
}

.values-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.values-content {
    flex: 1;
    padding: 0 3rem;
}

.values-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.values-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.team-section {
    padding: 5rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.team-member img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-member p {
    color: #555;
}

.approach-detail-section {
    padding: 5rem 5%;
    background-color: #ecf0f1;
}

.approach-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.approach-list {
    flex: 1;
}

.approach-list ul {
    list-style: none;
}

.approach-list ul li {
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    font-size: 1.05rem;
    color: #2c3e50;
}

.cta-about-section {
    padding: 5rem 5%;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

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

.cta-about-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-intro-split {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    gap: 3rem;
}

.services-intro-text {
    flex: 1;
}

.services-intro-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-intro-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.services-intro-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.services-intro-image img {
    width: 100%;
    object-fit: cover;
}

.services-detailed {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.service-detail-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-detail-left {
    flex: 2;
    padding: 3rem;
}

.service-detail-left h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-subtitle {
    font-size: 1.1rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-detail-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2c3e50;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-detail-right {
    flex: 1;
    padding: 3rem;
    background-color: #f8f9fa;
    text-align: center;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
}

.price-note {
    font-size: 0.95rem;
    color: #555;
}

.btn-book {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-book:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.package-section {
    padding: 5rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.package-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.package-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.package-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.package-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.package-card.featured {
    border-color: #3498db;
    background-color: #e8f4f8;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.package-desc {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
    display: block;
}

.package-save {
    font-size: 0.9rem;
    color: #95a5a6;
    text-decoration: line-through;
    display: block;
    margin-top: 0.5rem;
}

.btn-package {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background-color: #2980b9;
}

.services-cta-section {
    padding: 5rem 5%;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

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

.services-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info-split {
    display: flex;
    padding: 5rem 5%;
    gap: 3rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.contact-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.contact-item a {
    color: #3498db;
}

.contact-map {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.contact-approach {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-card p {
    color: #555;
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.contact-cta {
    padding: 5rem 5%;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.thanks-hero {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
    color: #ffffff;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.2);
    border-radius: 8px;
    margin-top: 2rem;
}

.selected-service {
    font-size: 1.1rem;
}

.next-steps-section {
    padding: 5rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.next-steps-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.next-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.next-step p {
    color: #555;
    line-height: 1.7;
}

.thanks-resources {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-resources p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.resource-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.resource-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.resource-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.resource-link {
    color: #3498db;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #2980b9;
}

.thanks-social {
    padding: 5rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.thanks-social h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-social p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1rem;
}

.social-email {
    font-size: 1.3rem;
}

.social-email a {
    color: #3498db;
    font-weight: 600;
}

.legal-page {
    padding: 5rem 10%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-updated {
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #555;
}

.legal-page a {
    color: #3498db;
}

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

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .value-split,
    .testimonial-split,
    .why-content-split,
    .story-split,
    .values-split,
    .approach-split,
    .services-intro-split,
    .service-detail-card,
    .contact-info-split {
        flex-direction: column;
    }

    .testimonial-split.reverse,
    .values-split.reverse {
        flex-direction: column;
    }

    .hero-left h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .intro-section {
        flex-direction: column;
    }

    .service-row {
        flex-direction: column;
        text-align: center;
    }

    .service-price {
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}