:root {
    --primary-color: #2C5F8D;
    --secondary-color: #4A90E2;
    --accent-color: #F4F7FA;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

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

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

.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo a {
    color: inherit;
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left img,
.split-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #1e4464;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.trust-indicators {
    padding: 60px 0;
    background: var(--white);
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.problem-section,
.insight-section,
.services-section,
.testimonials-section,
.how-it-works {
    padding: 80px 0;
}

.content-block {
    padding: 40px;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

.checkmark-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.centered {
    text-align: center;
}

.centered-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.insights-grid,
.services-grid,
.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.insight-card,
.service-card,
.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
}

.insight-icon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.insight-card h3,
.service-card h3,
.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card {
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(44, 95, 141, 0.15);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--warning-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.additional-services {
    margin-top: 60px;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    gap: 30px;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-price-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.bg-light {
    background: var(--accent-color);
}

.bg-accent {
    background: linear-gradient(135deg, #2C5F8D 0%, #4A90E2 100%);
    color: var(--white);
}

.bg-accent .testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--white);
}

.bg-accent .testimonial-text {
    color: var(--white);
}

.bg-accent .testimonial-author strong,
.bg-accent .testimonial-author span {
    color: var(--white);
}

.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.steps {
    margin-top: 2rem;
}

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

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.form-section {
    padding: 80px 0;
    background: var(--accent-color);
}

.enrollment-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

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

.faq-section {
    padding: 60px 0;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.main-footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

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

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

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #2C5F8D 0%, #4A90E2 100%);
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.9);
}

.about-intro,
.mission-section,
.values-section,
.team-section,
.methodology-section,
.achievements-section {
    padding: 80px 0;
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
}

.team-stats {
    display: flex;
    gap: 40px;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.team-stat {
    display: flex;
    flex-direction: column;
}

.team-stat strong {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.methodology-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.method-item {
    flex: 1;
    min-width: 250px;
}

.method-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.achievement-list {
    margin-top: 2rem;
}

.achievement-item {
    margin-bottom: 2rem;
}

.achievement-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-full {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-layout {
    display: flex;
    gap: 0;
}

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

.service-content {
    flex: 1;
    padding: 60px;
}

.service-image-col {
    flex: 0 0 400px;
}

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

.service-badge {
    display: inline-block;
    background: var(--warning-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.service-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.learning-list {
    list-style: none;
    margin-bottom: 2rem;
}

.learning-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

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

.program-details {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.detail-item {
    padding: 8px 0;
}

.additional-programs {
    padding: 80px 0;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 3rem;
}

.program-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    align-items: flex-start;
}

.program-item.highlighted {
    border: 2px solid var(--warning-color);
    background: linear-gradient(135deg, #fffbf0 0%, #fff9e6 100%);
}

.program-icon {
    flex-shrink: 0;
}

.program-info {
    flex: 1;
}

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

.program-highlights {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 1rem;
}

.program-highlights li {
    background: var(--accent-color);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.program-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.price-box {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-section {
    padding: 80px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    margin-top: 2rem;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background: var(--accent-color);
}

.guarantee-section {
    padding: 80px 0;
}

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

.guarantee-list li {
    padding: 12px 0;
}

.faq-compact {
    margin-top: 1.5rem;
}

.faq-item-compact {
    margin-bottom: 1.5rem;
}

.faq-item-compact strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.enrollment-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.enrollment-cta h2 {
    color: var(--white);
}

.contact-section {
    padding: 80px 0;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.map-placeholder {
    background: var(--accent-color);
    min-height: 400px;
    border-radius: 8px;
}

.contact-reasons {
    padding: 80px 0;
}

.reasons-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.reason-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.reason-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-stats {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
}

.contact-stat {
    display: flex;
    flex-direction: column;
}

.contact-stat strong {
    font-size: 2rem;
    color: var(--primary-color);
}

.quick-links-section {
    padding: 60px 0;
}

.quick-links {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.quick-link-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: 30px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.quick-link-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(44, 95, 141, 0.2);
}

.quick-link-card h3 {
    margin-bottom: 0.5rem;
}

.thanks-section {
    padding: 100px 0;
}

.success-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-message {
    text-align: center;
    margin-bottom: 3rem;
}

.service-confirmation {
    background: var(--accent-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: center;
}

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

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

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
}

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

.step-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.important-info {
    padding: 30px;
    border-radius: 8px;
    margin: 3rem 0;
}

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

.info-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.info-list li:before {
    content: "ℹ";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.info-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-list a:hover {
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.testimonial-thanks {
    padding: 60px 0;
}

.testimonial-single {
    max-width: 700px;
    margin: 2rem auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.resources-section {
    padding: 80px 0;
}

.resources-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
}

.resource-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page {
    padding: 60px 0;
    background: var(--white);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-section h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.legal-section h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--accent-color);
    font-weight: 600;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .split-layout {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

    .service-layout.reverse {
        flex-direction: column;
    }

    .service-image-col {
        flex: 0 0 auto;
        height: 300px;
    }

    .service-content {
        padding: 30px;
    }

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

    .program-action {
        align-items: flex-start;
        width: 100%;
    }

    .service-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price-action {
        width: 100%;
        justify-content: space-between;
    }

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

    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-grid {
        gap: 30px;
    }

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

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
}