/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004999;
}

/* Container utilities */
.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #0066cc;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

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

/* Hero split section */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

.hero-left {
    background-color: #f8f9fa;
    padding: 60px 40px;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 35px;
}

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

/* Buttons and CTAs */
.cta-primary,
.btn-primary {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover,
.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.cta-secondary,
.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #0066cc;
    padding: 16px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #0066cc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover,
.btn-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.value-proposition {
    background-color: #ffffff;
    padding: 70px 0;
}

.value-proposition h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.value-proposition p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

/* Split layouts */
.split-layout,
.split-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.split-content,
.split-image {
    flex: 1;
}

.split-content h2,
.split-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Problem section */
.problem-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* Insight block */
.insight-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 90px 0;
}

.insight-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #ffffff;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* Services showcase */
.services-showcase {
    background-color: #ffffff;
    padding: 90px 0;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 35px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin: 20px 0;
}

.select-service,
.cta-service {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.select-service:hover,
.cta-service:hover {
    background-color: #0052a3;
}

.select-service.selected {
    background-color: #28a745;
}

/* Trust signals */
.trust-signals {
    background-color: #f8f9fa;
    padding: 70px 0;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #4a5568;
}

/* Testimonials */
.testimonials-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #0066cc;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #4a5568;
    font-weight: 600;
}

/* Process section */
.process-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.process-steps {
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    min-width: 50px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

/* CTA sections */
.cta-section {
    background-color: #f8f9fa;
    padding: 70px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
}

/* Form section */
.form-section {
    background-color: #ffffff;
    padding: 70px 0;
}

.main-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    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: #0066cc;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.btn-submit {
    background-color: #0066cc;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #0052a3;
}

/* Final trust */
.final-trust {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.final-trust h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.final-trust p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #a0aec0;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #a0aec0;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

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

.sticky-btn {
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    background-color: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.5);
}

/* Page header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.header-lead {
    font-size: 19px;
    opacity: 0.95;
}

/* Services detailed */
.services-detailed {
    padding: 60px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.service-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-list {
    margin: 25px 0;
    padding-left: 20px;
}

.service-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.service-price-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
}

.price-note {
    display: block;
    font-size: 14px;
    color: #4a5568;
    margin-top: 5px;
}

/* Contact page */
.contact-main {
    padding: 60px 0;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.contact-note {
    font-size: 14px;
    color: #718096;
    margin-top: 5px;
}

.contact-info-extra {
    background-color: #f8f9fa;
    padding: 70px 0;
}

.help-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.help-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.help-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.help-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.map-section {
    padding: 70px 0;
}

.map-placeholder {
    text-align: center;
}

.map-placeholder img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 15px;
}

.map-note {
    font-size: 15px;
    color: #4a5568;
}

.cta-contact {
    background-color: #f8f9fa;
    padding: 70px 0;
    text-align: center;
}

.cta-about {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.cta-about h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-about p {
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* About page */
.story-section {
    padding: 80px 0;
}

.values-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.team-approach {
    padding: 80px 0;
}

.certifications-section {
    background-color: #f8f9fa;
    padding: 70px 0;
}

.certifications-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

.certifications-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.projects-showcase {
    padding: 80px 0;
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.project-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
}

.project-year {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.why-us-services {
    background-color: #f8f9fa;
    padding: 70px 0;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.reason-box {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.reason-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.reason-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.cta-services {
    padding: 70px 0;
    text-align: center;
}

/* Thanks page */
.thanks-hero {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.selected-service-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.step-box {
    display: flex;
    gap: 20px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.step-box .step-number {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    min-width: 50px;
}

.step-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Legal pages */
.legal-page {
    padding: 60px 0 80px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 20px 20px;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.legal-date {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e2e8f0;
    font-size: 15px;
}

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

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

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

    .split-layout,
    .split-reverse {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .hero-content h1 {
        font-size: 38px;
    }
}

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

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

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 17px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .service-card,
    .value-card,
    .help-card,
    .reason-box {
        flex: 1 1 100%;
    }

    .stats-row {
        flex-direction: column;
    }

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

    .sticky-btn {
        padding: 14px 25px;
        font-size: 14px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .service-price {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .main-form {
        padding: 25px;
    }

    .project-card {
        flex: 1 1 100%;
    }
}
