/* Base styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

* { box-sizing: border-box; }

.container { 
    max-width: 1177px; 
    margin: 0 auto; 
    padding: 0 15px; 
}

/* Header styles */
header {
    background-color: #093d5e;
}

.top-blue-block {
    height: 10px;
    width: 100%;
}

.header-content { 
    background-color: #f5f5f5; 
    padding: 5px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.logo img { 
    max-height: 60px; 
    width: auto; 
}

.header-right { 
    display: flex; 
    align-items: center; 
}

.bottom-blue-line {
    height: 3px;
    width: 100%;
    background-color: #093d5e;
}

/* Hero Section */
.hero {
    background-color: #093d5e;
    color: white;
    text-align: center;
    padding: 20px 0 40px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 2.3rem;
    font-weight: bold;
    display: inline-block;
}

.hero-subheading {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* Mini Hero Section */
.mini-hero {
    background-color: #093d5e;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.mini-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.mini-hero .subtitle {
    font-size: 2rem;
    font-weight: bold;
}

/* CTA Buttons */
/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: #093d5e;
    color: #ffffff !important;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #b70030;
    color: #ffffff !important;
}

/* Inverse (White) Button */
.cta-button.inverse {
    background-color: #fff;
    color: #093d5e !important;
}

.cta-button.inverse:hover {
    background-color: #b70030;
    color: #ffffff !important;
}

/* Header Button */
.header-cta {
    padding: 8px 20px;
    margin: 0;
    font-size: 0.9rem;
}

/* Content Pages Specific */
.content-cta .cta-button {
    color: #ffffff !important;
}

/* Video Section */
/* Video Container Styles */
.video-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 30px auto;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hero Testimonial */
.testimonial-container {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    color: #e0e0e0;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
    padding: 0;
}

.testimonial-author {
    display: block;
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-top: 15px;
    text-align: right;
    font-style: normal;
}

/* Testimonials Section */
.testimonials {
    padding: 30px 0;
    background: #f5f5f5;
}

.testimonials h2 {
    color: #093d5e;
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 20px;
    font-weight: bold;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto 20px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 250px;
}

.testimonial-slides {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    visibility: visible;
}

.testimonial-slide blockquote {
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    font-family: 'Georgia', serif;
}

.testimonial-slide cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: bold;
    color: #093d5e;
    text-align: right;
}

.testimonial-slide cite span {
    display: block;
    font-weight: normal;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.testimonials .text-center {
    display: none;
}

/* Promo Section */
.promo-section {
    background: white;
    padding: 50px 0;
}

.promo-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promo-text {
    color: #093d5e;
}

.promo-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-text strong {
    font-weight: 700;
}

/* Qualification Section */
.qualification {
    padding: 30px 0;
    background: #f5f5f5;
}

.qualification h2 {
    color: #093d5e;
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 20px;
    font-weight: bold;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.qualification-list {
    max-width: 800px;
    margin: 0 auto 20px;
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qualification-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.qualification-item:hover {
    transform: translateX(5px);
}

.qualification-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.qualifier-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 3px;
    color: #093d5e;
}

.qualification-item:hover .qualifier-icon {
    color: #b70030;
}

.qualification-item p {
    flex: 1;
    margin: 0;
    line-height: 1.4;
}

.qualification-item strong {
    color: #000000;
    display: inline;
}

.text-center {
    text-align: center;
    margin-top: 20px;
}

/* Call Details Section */
.call-details {
    padding: 30px 0;
    background: white;
}

.call-details h2 {
    color: #093d5e;
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 20px;
    font-weight: bold;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #eee;
    transition: transform 0.3s ease;
}

.highlight-item p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.highlight-item .qualifier-icon {
    width: 28px;
    height: 28px;
}

/* Expandable Points */
.expandable-points {
    margin-top: 30px;
}

.call-point {
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.point-header {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    cursor: pointer;
}

.point-details {
    max-height: 0;
    overflow: hidden;
    background: #093d5e;
    color: white;
    margin: 0 15px 15 0px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.call-point:hover .point-details,
.call-point.active .point-details {
    max-height: 200px;
    padding: 15px;
    margin-bottom: 15px;
}

.call-point:hover {
    transform: translateX(5px);
    background: #e8e8e8;
}

/* CTA Section */
.cta-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cta-text {
    font-size: 1.2rem;
    color: #093d5e;
    font-weight: bold;
    margin-bottom: 15px;
}

/* .call-points {
    max-width: 800px;
    margin: 0 auto 20px;
    background: #f5f5f5;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.call-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    transition: transform 0.3s ease, background-color 0.3s ease;
} */

.call-point:hover {
    transform: translateX(5px);
}

.call-point:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.call-point-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 3px;
    color: #093d5e;
    transition: color 0.3s ease;
}

.call-point:hover .call-point-icon {
    color: #b70030;
}

.call-point-text {
    flex: 1;
    line-height: 1.4;
}

.call-point-text strong {
    color: #093d5e;
    display: inline;
}

/* Calendly Section */
.calendly-section {
    padding: 30px 0;
    background: #f5f5f5;
}

.calendly-section h2 {
    color: #093d5e;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.calendly-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendly-inline-widget {
    min-width: 320px;
    height: 900px;
}

/* Footer */
footer {
    background: #093d5e;
    color: white;
    padding: 40px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 95px;
    width: auto;
}

.footer-links {
    text-align: right;
    font-size: 0.9rem;
}

.footer-links a {
    color: #8798a2;
    text-decoration: none;
    margin-left: 20px;
}

.footer-links a:hover {
    color: white;
}

.disclaimer {
    font-size: 0.8rem;
    color: #8798a2;
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
}

/* Thank You Overlay */
.thank-you-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 61, 94, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.overlay-content {
    background: white;
    border-radius: 8px;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.overlay-header {
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.overlay-header h2 {
    color: #093d5e;
    margin: 0;
    font-size: 1.8rem;
    padding-right: 40px;
    text-align: center;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.overlay-body {
    padding: 30px;
}

/* Welcome Video in Overlay */
.welcome-video-container {
    margin: 20px 15px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.welcome-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Email Opt-in Form */
.email-optin {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.optin-card {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
}

.optin-card h3 {
    color: #093d5e;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus {
    border-color: #093d5e;
    outline: none;
}

.submit-button {
    background: #093d5e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #b70030;
}

.privacy-note {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

.success-message {
    display: none;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
    text-align: center;
}

/* Content Pages */
.content-section {
    padding: 40px 0;
    background: #f5f5f5;
}

.content-section .container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section h1 {
    color: #093d5e;
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-section h2 {
    color: #093d5e;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-section a {
    color: #093d5e;
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

.content-cta {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Contact Intro & Form Styles */
.contact-intro {
    background: #f5f5f5;
    padding: 20px 0 0;
}

.contact-intro .container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-details {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-around;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #b70030;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-item p {
    margin: 0;
    color: #333;
}

.contact-message {
    margin-bottom: 20px;
}

.contact-message .qualification-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease;
}

.contact-message .qualification-item:hover {
    transform: translateX(5px);
}

.contact-message .qualifier-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 12px;
    margin-top: 2px;
    color: #093d5e;
    transition: color 0.3s ease;
}

.contact-message .qualification-item:hover .qualifier-icon {
    color: #b70030;
}

.contact-message .qualification-item p {
    flex: 1;
    margin: 0;
    line-height: 1.4;
    color: #333;
}

.contact-section {
    padding: 30px 0;
    background: #f5f5f5;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: #093d5e;
    margin-bottom: 30px;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #093d5e;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    grid-column: span 2;
    text-align: center;
    margin-top: 20px;
}

/* Contact Specific Call Points */
.contact-message .call-point:hover {
    transform: translateX(5px);
    background: #e8e8e8;
}

.contact-message .call-point:last-child {
    margin-bottom: 0;
}

.contact-message .call-point-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    color: #093d5e;
    transition: color 0.3s ease;
}

.contact-message .call-point:hover .call-point-icon {
    color: #b70030;
}

.contact-message .call-point-text {
    flex: 1;
    color: #333;
}



/* Call Details Section Fixes */
.call-details .call-points {
    max-width: 800px;
    margin: 0 auto 20px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.call-details .call-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    transition: transform 0.3s ease;
}

.call-details .call-point:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.call-details .call-point-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 3px;
    color: #093d5e;
}

.call-details .call-point-text {
    flex: 1;
    line-height: 1.4;
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease-in;
}

.success-message .success-icon {
    width: 48px;
    height: 48px;
    color: #093d5e;
    margin-bottom: 20px;
}

.success-message h2 {
    color: #093d5e;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.success-message .message-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.success-message .next-steps {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.success-message .next-steps p {
    color: #333;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Base container styles */
.contact-form-container {
    position: relative !important;
    min-height: 200px !important;
}

/* Force success message visibility */
/* Success Message Container */
.contact-form-container .success-message {
    background: white !important;
    padding: 40px 20px !important;
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Checkmark Icon */
.contact-form-container .success-message [data-lucide="check-circle"] {
    width: 64px !important;
    height: 64px !important;
    color: #093d5e !important;
    margin-bottom: 24px !important;
}

/* Thank You Heading */
.contact-form-container .success-message h2 {
    color: #093d5e !important;
    font-size: 2rem !important;
    font-weight: bold !important;
    margin: 0 0 16px 0 !important;
    line-height: 1.2 !important;
}

/* Confirmation Message */
.contact-form-container .success-message p {
    color: #666 !important;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    margin: 0 0 24px 0 !important;
    max-width: 600px !important;
}

/* Next Steps Section */
.contact-form-container .success-message .next-steps {
    background: #f5f5f5 !important;
    padding: 24px !important;
    border-radius: 8px !important;
    width: 100% !important;
    max-width: 500px !important;
    margin-top: 24px !important;
}

.contact-form-container .success-message .next-steps p {
    color: #333 !important;
    font-size: 1.1rem !important;
    margin-bottom: 16px !important;
}

/* CTA Button in Success Message */
.contact-form-container .success-message .cta-button {
    display: inline-block !important;
    background-color: #093d5e !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    transition: background-color 0.3s ease !important;
}

.contact-form-container .success-message .cta-button:hover {
    background-color: #b70030 !important;
}

/* Contact Form Header Styles */
.contact-form-container .form-header {
    background-color: #093d5e !important;
    color: white !important;
    padding: 25px 30px !important;
    margin: -30px -30px 30px -30px !important;
    border-radius: 8px 8px 0 0 !important;
    text-align: center !important;
}

.contact-form-container .form-header h2 {
    font-size: 1.8rem !important;
    margin: 0 0 12px 0 !important;
    font-weight: 600 !important;
    color: white !important;
}

.contact-form-container .form-header .header-blurb {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}


/* Responsive Design */
@media (max-width: 768px) {
    /* Header */
    .header-inner {
        justify-content: center;
    }
    
    .logo img { 
        max-height: 45px;
    }
    
    .header-right {
        display: none !important;
    }
    
    .header-content {
        padding: 3px 0;
    }
    
    .top-blue-block {
        height: 8px;
    }

    /* Hero Sections */
    .hero h1 { 
        font-size: 2rem; 
    }
    
    .hero .subtitle { 
        font-size: 1.8rem; 
    }
    
    .hero-subheading { 
        font-size: 1.2rem; 
    }
    
    .mini-hero h1 {
        font-size: 2rem;
    }
    
    .mini-hero .subtitle {
        font-size: 1.6rem;
    }

    /* Section Spacing */
    .qualification,
    .testimonials,
    .calendly-section,
    .call-details {
        padding: 20px 0;
    }

    /* Section Headers */
    .qualification h2,
    .call-details h2,
    .calendly-section h2,
    .expectations-container h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        padding: 0 20px;
    }

    /* Lists and Containers */
    .qualification-list,
    .call-points,
    .testimonial-carousel {
        padding: 15px 20px;
        margin: 0 15px 20px;
    }

    /* List Items */
    .qualification-item,
    .call-point {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    /* Testimonials */
    .testimonial-carousel {
        margin: 0 15px 20px;
        padding: 20px;
    }
    
    .testimonial-slide blockquote {
        font-size: 1rem;
    }

    /* Calendly */
    .calendly-section h2 {
        padding: 0 15px;
    }
    
    .calendly-container {
        margin: 0 15px;
    }
    
    .calendly-inline-widget {
        height: 750px;
    }

    /* Content Pages */
    .content-section .container {
        padding: 20px;
        margin: 0 15px;
    }
    
    .content-section h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }

    /* Contact Form */
    .contact-intro .container,
    .contact-form-container {
        padding: 20px;
        margin: 0 15px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-details {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .contact-message h3 {
        font-size: 1.3rem;
    }
    
    .contact-message .call-point {
        padding: 12px;
    }

    /* Overlay */
    .overlay-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .overlay-header h2 {
        font-size: 1.5rem;
    }
    
    .overlay-body {
        padding: 20px;
    }
    
    .optin-card {
        padding: 15px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }

    /* CTA Messages */
    .cta-message {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px;
    }
    
    .cta-message strong {
        font-size: 1.1rem;
    }
    
    .contact-message .cta-button {
        margin: 10px 0 0;
    }

    /* Grid Layouts */
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .point-details {
        max-height: none;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .call-point {
        margin-bottom: 20px;
    }
    
    .highlight-item p {
        font-size: 1.1rem;
    }
    
    .call-details .call-points {
        margin: 0 15px 20px;
        padding: 20px;
    }
    
    .call-details .call-point {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .success-message {
        padding: 30px 15px;
    }
    
    .success-message h2 {
        font-size: 1.5rem;
    }
    
    .success-message .message-text {
        font-size: 1.1rem;
    }
    
    .contact-form-container .success-message {
        padding: 30px 15px !important;
    }
    
    .contact-form-container .success-message h2 {
        font-size: 1.8rem !important;
    }
    
    .contact-form-container .success-message p {
        font-size: 1.1rem !important;
    }
    
    .contact-form-container .success-message [data-lucide="check-circle"] {
        width: 48px !important;
        height: 48px !important;
    }
    
    .contact-form-container .success-message .next-steps {
        padding: 20px !important;
    }
    
    .contact-form-container .form-header {
        margin: -20px -20px 20px -20px !important;
        padding: 20px !important;
    }
    
    .contact-form-container .form-header h2 {
        font-size: 1.6rem !important;
    }
    
    .contact-form-container .form-header .header-blurb {
        font-size: 0.9rem !important;
    }
}