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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.container.narrow {
    max-width: 800px;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a5f7a;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a5f7a;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a5f7a;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

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

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a5f7a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.cta-primary:hover {
    background: #144a5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 95, 122, 0.3);
}

.cta-primary.large {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a5f7a;
    color: #ffffff;
}

/* Split Layout Pattern */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 3rem;
}

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

.content-block {
    flex: 1;
}

.image-block {
    flex: 1;
}

.image-block.wide {
    flex: 1.2;
}

.image-block img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a5f7a;
    font-weight: 700;
    margin-bottom: 1rem;
}

.content-block h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

/* Intro Section */
.intro-section {
    background: #ffffff;
}

/* Features Grid */
.features-grid {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.features-grid h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: #1a1a1a;
}

.features-wrapper {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Showcase Alternate */
.showcase-alternate {
    background: #ffffff;
}

/* Pricing Preview */
.pricing-preview {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a5f7a 0%, #144a5e 100%);
    color: #ffffff;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.price-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    color: #2c3e50;
    position: relative;
}

.price-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff6b6b;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.price-card .description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.price-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.card-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #1a5f7a;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-cta:hover {
    background: #144a5e;
}

.pricing-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-note p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1a5f7a;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    color: #666;
    font-weight: 600;
}

/* Process Section */
.process-section {
    background: #ffffff;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5f7a;
    opacity: 0.3;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    text-align: center;
    color: #ffffff;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    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: #1a5f7a;
}

.btn-submit {
    padding: 1.1rem 2rem;
    background: #1a5f7a;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

/* Additional Info */
.additional-info {
    padding: 4rem 2rem;
    background: #ffffff;
}

.info-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-block {
    flex: 1;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.info-block p {
    color: #4a5568;
    line-height: 1.7;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3.5rem 2rem 2rem;
}

.footer-grid {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #ff6b6b;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #ee5a52;
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cookie-content a {
    color: #66d9ef;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-accept:hover {
    background: #144a5e;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-reject:hover {
    border-color: #ffffff;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a5f7a 0%, #144a5e 100%);
    color: #ffffff;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

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

.page-hero .lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Page */
.about-intro {
    background: #ffffff;
}

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

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

.team-section {
    background: #ffffff;
}

.team-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.team-list li {
    list-style: disc;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.approach-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.approach-item {
    display: flex;
    gap: 2rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.approach-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a5f7a;
    flex-shrink: 0;
}

.approach-item .text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.approach-item .text p {
    color: #4a5568;
    line-height: 1.7;
}

.experience-banner {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a5f7a 0%, #144a5e 100%);
    color: #ffffff;
}

.stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
}

/* Services Page */
.services-intro {
    padding: 2rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.intro-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #856404;
}

.services-detailed {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.service-item {
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-header {
    background: linear-gradient(135deg, #1a5f7a 0%, #144a5e 100%);
    padding: 2rem 2.5rem;
}

.service-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-title h2 {
    font-size: 2rem;
    color: #ffffff;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
}

.service-content {
    display: flex;
    padding: 2.5rem;
    gap: 3rem;
}

.service-description {
    flex: 1.5;
}

.service-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4a5568;
}

.service-description h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: #1a1a1a;
}

.service-description ul {
    padding-left: 1.5rem;
}

.service-description ul li {
    list-style: disc;
    margin-bottom: 0.6rem;
    color: #4a5568;
}

.service-image {
    flex: 1;
}

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

.service-footer {
    padding: 0 2.5rem 2.5rem;
}

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

.btn-service:hover {
    background: #144a5e;
    transform: translateY(-2px);
}

.pricing-notes {
    padding: 4rem 2rem;
    background: #ffffff;
}

.pricing-notes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.notes-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.note-item {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.note-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.note-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Contact Page */
.contact-content {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a5f7a;
}

.info-item p,
.info-item a {
    color: #4a5568;
    line-height: 1.7;
}

.info-item a:hover {
    color: #1a5f7a;
}

.contact-additional {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1a5f7a;
}

.contact-additional h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-additional ol {
    padding-left: 1.5rem;
}

.contact-additional ol li {
    margin-bottom: 0.6rem;
    color: #4a5568;
}

.faq-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

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

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a5f7a 0%, #144a5e 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-content .lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

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

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: #ffffff;
    color: #1a5f7a;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f0f0f0;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.additional-resources {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.additional-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.resource-cards {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.resource-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.resource-card a {
    color: #1a5f7a;
    font-weight: 600;
}

.resource-card a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

.update-date {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.8rem 0 0.8rem;
    color: #1a5f7a;
}

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

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

.legal-content ul li {
    list-style: disc;
    margin-bottom: 0.6rem;
    color: #4a5568;
}

.legal-content a {
    color: #1a5f7a;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #144a5e;
}

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

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

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 2.5rem;
        padding: 3rem 2rem;
    }

    .features-wrapper,
    .pricing-cards,
    .testimonials-grid,
    .values-grid,
    .stats-wrapper,
    .info-grid,
    .notes-grid,
    .steps-grid,
    .resource-cards {
        flex-direction: column;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .content-block h2,
    .features-grid h2,
    .section-header h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .banner-content h2 {
        font-size: 2.2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 1.5rem;
    }

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

    .split-layout {
        padding: 2rem 1rem;
    }

    .content-block h2 {
        font-size: 1.7rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .pricing-cards,
    .features-wrapper {
        gap: 1.5rem;
    }
}