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

:root {
    --primary: #30C1D6;
    --primary-dark: #259AAF;
    --secondary: #f97316;
    --secondary-dark: #ea580c;
    --accent: #8b5cf6;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

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

section {
    padding: 4rem 0;
}

ul {
    list-style-type: none;
}

.placeholder-img {
    background-color: #ddd;
    border-radius: 8px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: bold;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: var(--secondary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.secondary-button {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 25px;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-button:hover {
    background-color: var(--primary);
    color: white;
}

/* Pulsing animation for CTAs */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

/* Header / Hero Section */
.hero {
    background: linear-gradient(135deg, #259AAF 0%, #30C1D6 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.easter-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 20px;
    margin-top: 2rem;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.easter-emoji {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.spots-remaining {
    background-color: var(--warning);
    color: white;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 10px;
    display: inline-block;
}

/* Pain Points Section */
.pain-points {
    background-color: white;
    text-align: center;
}

.pain-points h2 {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.pain-points-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-points-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 400px;
}

.pain-points-list ul {
    margin-bottom: 2rem;
}

.pain-points-list li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.pain-points-list li:before {
    content: "✗";
    color: var(--danger);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.qualification-box {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.check-list li {
    margin-bottom: 0.75rem;
    padding-left: 30px;
    position: relative;
}

.check-list li:before {
    content: "✓";
    color: var(--success);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.better-way {
    margin-top: 4rem;
    background-color: var(--light);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.better-way p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light);
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 3rem;
}

.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.system-process-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.system-diagram {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.system-diagram-img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.process-img {
    margin-bottom: 3rem;
    max-height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.steps {
    counter-reset: step-counter;
    text-align: left;
}

.steps li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.step-number {
    background-color: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.step-content {
    padding-top: 0.5rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray);
}

.cta-center {
    margin-top: 2rem;
    text-align: center;
}

/* Solutions Section */
.solutions {
    background-color: white;
}

.solutions h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.solution-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.solution-number {
    background-color: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

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

.solution-content h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.problem, .solution {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.problem {
    background-color: rgba(239, 68, 68, 0.05);
    border-left: 3px solid var(--danger);
}

.solution {
    background-color: rgba(16, 185, 129, 0.05);
    border-left: 3px solid var(--success);
}

.problem h4, .solution h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.problem h4 {
    color: var(--danger);
}

.solution h4 {
    color: var(--success);
}

.problem p {
    color: var(--dark);
}

.solution p {
    color: var(--dark);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light);
    text-align: center;
}

.testimonials h2, .testimonials h3 {
    margin-bottom: 1rem;
}

.testimonials h3 {
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-placeholder {
    background-color: #ddd;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    background: linear-gradient(45deg, #259AAF, #30C1D6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    opacity: 0.9;
}

.testimonial-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
}

.quote:before {
    content: '"';
    font-size: 3rem;
    color: var(--light-gray);
    position: absolute;
    left: 0;
    top: -1rem;
    font-family: serif;
}

.testimonial-author {
    text-align: left;
    color: var(--gray);
}

/* Case Study Section */
.case-study {
    background-color: white;
    text-align: center;
}

.alt-case-study {
    background-color: var(--light);
}

.full-width-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 2rem;
    background-color: var(--light);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.case-study-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.quote-box {
    background-color: rgba(255, 255, 255, 0.7);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 1.5rem;
}

.quote-box .quote {
    font-style: italic;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    padding-left: 0;
    margin-bottom: 0;
}

.quote-box .quote:before {
    display: none;
}

.case-study h2 {
    margin-bottom: 3rem;
}

.case-study-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.case-study-table {
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-table .comparison-table {
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
}

.case-study-section {
    margin-bottom: 2rem;
}

.case-study-section h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.results-list, .findings-list {
    margin-bottom: 2rem;
}

.results-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 25px;
}

.results-list li:before {
    content: "→";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.findings-list li {
    margin-bottom: 1rem;
    position: relative;
    padding: 0.75rem 1rem;
    background-color: rgba(48, 193, 214, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 6px;
    font-weight: 500;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Comparison Table Styles */
.comparison-table {
    margin: 0.5rem 0;
    background-color: var(--light);
    border-radius: 10px;
    padding: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.comparison-table h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background-color: var(--primary);
    color: white;
    text-align: left;
    padding: 8px 10px;
}

.comparison-table th:first-child {
    border-radius: 5px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 5px 0 0;
}

.comparison-table td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td.highlight {
    font-weight: bold;
    background-color: rgba(48, 193, 214, 0.1);
}

/* Reviews Section */
.reviews {
    background-color: var(--light);
    text-align: center;
    padding: 5rem 0;
}

.google-reviews-stats {
    margin-bottom: 3rem;
}

.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.google-review-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.google-badge-logo {
    height: 24px;
}

.stars {
    font-size: 1.2rem;
    color: #FBBC05;
    display: flex;
    gap: 0.1rem;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.reviews-carousel-container {
    max-width: 1000px;
    margin: 0 auto 3rem;
    position: relative;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow: hidden;
    padding: 1rem 0;
}

.review-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.review-header {
    margin-bottom: 1.5rem;
}

.review-header .stars {
    font-size: 1.2rem;
}

.review-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-content p {
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    position: relative;
}

.review-content p.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-toggle {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-toggle:hover {
    color: var(--primary-dark);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

.review-date {
    font-size: 0.8rem;
    color: var(--gray);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel-control {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.google-badge {
    display: flex;
    justify-content: center;
}

.google-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.google-button img {
    height: 24px;
}

.google-button span {
    color: var(--dark);
    font-weight: 500;
}

.google-button:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .reviews-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-carousel {
        grid-template-columns: 1fr;
    }
    
    .review-content p.collapsed {
        -webkit-line-clamp: 6;
    }
}

/* Limited Offer Section */
.limited-offer {
    background-color: var(--light);
    padding: 4rem 0;
}

.offer-box {
    background: linear-gradient(135deg, #259AAF 0%, #30C1D6 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.offer-badge {
    background-color: var(--secondary);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.offer-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.countdown {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.countdown-timer h3, .spots-counter h3 {
    margin-bottom: 1rem;
}

.timer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    min-width: 80px;
}

.timer-block span:first-child {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.timer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.timer-separator {
    font-size: 2rem;
    font-weight: 700;
    margin-top: -10px;
}

.progress-container {
    max-width: 300px;
    margin: 0 auto;
}

.progress-bar {
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress {
    height: 100%;
    background-color: var(--warning);
    border-radius: 10px;
}

.spots-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.offer-warning {
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Apply Form Section */
.apply {
    background-color: white;
    text-align: center;
}

.apply h2 {
    margin-bottom: 1rem;
}

.apply > .container > p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* Trusted By Section */
.trusted-by {
    background-color: var(--light);
    text-align: center;
    padding: 3rem 0;
}

.trusted-by h3 {
    margin-bottom: 2rem;
    color: var(--gray);
}

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

.logo-grid img {
    max-width: 150px;
    max-height: 80px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    background-color: var(--light);
    padding: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.accordion-content {
    background-color: white;
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 1.25rem;
    max-height: 1000px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.ask-question {
    text-align: center;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--light);
    padding: 4rem 0;
}

.final-offer {
    background: linear-gradient(135deg, #259AAF 0%, #30C1D6 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-price h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.expiry {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
}

footer a:hover {
    color: white;
}

.footer-links {
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .pain-points-grid, 
    .case-study-container,
    .system-process-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-points-image,
    .system-diagram {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .system-diagram-img {
        max-height: 500px;
    }
    
    .case-study-table {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .steps li {
        grid-template-columns: 50px 1fr;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .application-form {
        padding: 1.5rem;
    }
}
