/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0056b3;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0056b3;
    border-bottom-color: #0056b3;
}

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

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

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

.cookie-content p {
    flex: 1;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-cta,
.btn-cta-large,
.btn-submit {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #0056b3;
    color: #ffffff;
}

.btn-primary:hover {
    background: #003d82;
}

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

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

.btn-cta,
.btn-cta-large {
    background: #0056b3;
    color: #ffffff;
    padding: 1rem 2rem;
}

.btn-cta-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-cta:hover,
.btn-cta-large:hover {
    background: #003d82;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,86,179,0.3);
}

.btn-submit {
    background: #0056b3;
    color: #ffffff;
    width: 100%;
}

.btn-submit:hover {
    background: #003d82;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: #f8f9fa;
    padding: 4rem 3rem;
}

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

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

.hero-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    background: #e9ecef;
    overflow: hidden;
}

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

/* Split Sections */
.intro-split,
.about-split,
.mission-split,
.services-intro-split,
.contact-split,
.cta-split {
    display: flex;
    min-height: 500px;
}

.intro-split.reverse,
.mission-split.reverse {
    flex-direction: row-reverse;
}

.intro-text,
.intro-image,
.about-text,
.about-image,
.mission-text,
.mission-image,
.services-intro-text,
.services-intro-image,
.contact-info,
.contact-map,
.cta-content,
.cta-visual {
    flex: 1;
}

.intro-text,
.about-text,
.mission-text,
.services-intro-text,
.contact-info,
.cta-content {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2,
.about-text h2,
.mission-text h2,
.services-intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p,
.about-text p,
.mission-text p,
.services-intro-text p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
}

.intro-image,
.about-image,
.mission-image,
.services-intro-image,
.contact-map,
.cta-visual {
    background: #e9ecef;
    overflow: hidden;
}

.intro-image img,
.about-image img,
.mission-image img,
.services-intro-image img,
.contact-map img,
.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header.centered {
    text-align: center;
}

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

.section-header p {
    font-size: 1.125rem;
    color: #555;
}

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

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

/* Services Section */
.services-split {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.125rem;
    color: #555;
}

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

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0056b3;
    font-weight: bold;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 150px;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0056b3;
}

.price-label {
    font-size: 0.875rem;
    color: #777;
    margin-top: 0.25rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: #0056b3;
    color: #ffffff;
}

.cta-section.centered {
    background: #0056b3;
}

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

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

.cta-section .btn-cta,
.cta-section .btn-cta-large {
    background: #ffffff;
    color: #0056b3;
}

.cta-section .btn-cta:hover,
.cta-section .btn-cta-large:hover {
    background: #f8f9fa;
}

/* Process Section */
.process-section {
    padding: 5rem 2rem;
    background: #ffffff;
    display: flex;
    gap: 4rem;
}

.process-left {
    flex: 1;
}

.process-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.process-left p {
    font-size: 1.125rem;
    color: #555;
}

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

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0056b3;
    min-width: 60px;
}

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

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

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

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

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

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

.testimonial-text {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-author span {
    color: #777;
    font-size: 0.875rem;
}

/* Form Section */
.form-section-split {
    display: flex;
    min-height: 600px;
}

.form-intro {
    flex: 1;
    background: #0056b3;
    color: #ffffff;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
}

.form-container {
    flex: 1;
    padding: 4rem 3rem;
    background: #f8f9fa;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

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

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

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

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

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    background: #e9ecef;
}

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

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

.member-role {
    color: #0056b3;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.philosophy-grid {
    display: flex;
    gap: 2rem;
}

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

.philosophy-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0056b3;
}

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

/* Services Detailed */
.services-detailed {
    padding: 5rem 2rem;
    background: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.service-detail-left {
    flex: 2;
}

.service-detail-left h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-subtitle {
    font-size: 1.125rem;
    color: #0056b3;
    margin-bottom: 1.5rem;
}

.service-description p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
    margin-top: 1.5rem;
}

.service-includes li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0056b3;
    font-weight: bold;
}

.service-detail-right {
    flex: 1;
}

.price-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 0.5rem;
}

.price-type {
    display: block;
    color: #777;
    margin-bottom: 1.5rem;
}

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
    background: #e9ecef;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

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

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

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

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

.comparison-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.comparison-item p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.comparison-item strong {
    color: #0056b3;
}

/* Contact Info */
.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-block p {
    color: #555;
    line-height: 1.7;
}

.contact-block a {
    color: #0056b3;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.contact-note p {
    color: #856404;
}

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #0056b3;
}

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

/* Thanks Section */
.thanks-section {
    padding: 5rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
}

.thanks-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    display: flex;
    gap: 2rem;
}

.next-step {
    flex: 1;
    display: flex;
    gap: 1rem;
}

.next-step .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0056b3;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

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

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

/* Thanks Resources */
.thanks-resources {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

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

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

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

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

.resource-card a {
    color: #0056b3;
    font-weight: 600;
}

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

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

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.legal-section {
    margin-bottom: 3rem;
}

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

.legal-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-section ol li {
    list-style: decimal;
}

.legal-section a {
    color: #0056b3;
    text-decoration: underline;
}

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

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

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

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

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #ccc;
    line-height: 1.7;
}

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

.footer-column a {
    color: #ccc;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .about-split,
    .mission-split,
    .services-intro-split,
    .contact-split,
    .cta-split,
    .form-section-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .mission-split.reverse {
        flex-direction: column;
    }

    .values-grid,
    .testimonials-grid,
    .team-grid,
    .philosophy-grid,
    .comparison-grid,
    .resources-grid {
        flex-direction: column;
    }

    .process-section {
        flex-direction: column;
        gap: 2rem;
    }

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

    .next-steps {
        flex-direction: column;
    }

    .faq-item {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

    .service-price {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

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

    .hero-lead {
        font-size: 1rem;
    }

    .section-header h2,
    .services-intro h2 {
        font-size: 1.75rem;
    }

    .thanks-icon {
        font-size: 3rem;
    }

    .thanks-section h1 {
        font-size: 2rem;
    }
}
