:root {
    --primary-color: #4a90e2;
    --secondary-color: #27ae60;
    --accent-color: #e67e22;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

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

ul {
    margin-bottom: 1rem;
}

.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

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

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 5rem 0;
    text-align: center;
}

.hero-content h1 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.page-hero {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.page-hero-text {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #3a7bc8;
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

section {
    padding: 4rem 0;
}

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

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

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

.philosophy-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
}

.philosophy-icon {
    margin-bottom: 1rem;
}

.services-preview {
    background-color: var(--bg-white);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

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

.service-price {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

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

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

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

.stat-item {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
}

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

.testimonials {
    background-color: var(--bg-white);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

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

.expertise-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.expertise-text {
    flex: 1 1 60%;
    min-width: 300px;
}

.expertise-highlights {
    flex: 1 1 35%;
    min-width: 250px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-white);
    border-radius: 5px;
}

.faq {
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background-color: var(--bg-white);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.25rem;
    margin: 0;
    background-color: var(--bg-light);
}

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

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--bg-white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.footer {
    background-color: #2c3e50;
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 200px;
}

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 60%;
    margin: 0;
    min-width: 250px;
}

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

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option p {
    margin: 0.5rem 0 0 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

.story {
    background-color: var(--bg-white);
}

.story-content {
    max-width: 900px;
    margin: 2rem auto 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.team {
    background-color: var(--bg-white);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.timeline {
    max-width: 900px;
    margin: 2rem auto 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
}

.timeline-content {
    flex: 1;
}

.approach {
    background-color: var(--bg-white);
}

.approach-content {
    max-width: 900px;
    margin: 2rem auto 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.commitment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.why-choose {
    background-color: var(--bg-white);
}

.reasons-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.reason-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.reason-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.services-detailed {
    background-color: var(--bg-white);
}

.service-detailed {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.service-header h2 {
    margin: 0;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-description {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-features h3 {
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: scale(1.05);
}

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

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 5px;
}

.service-benefits {
    background-color: var(--bg-white);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.process-detailed {
    max-width: 900px;
    margin: 2rem auto 0;
}

.process-step-detailed {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.process-step-detailed h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-info {
    background-color: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

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

.about-content {
    max-width: 900px;
    margin: 2rem auto 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.directions {
    background-color: var(--bg-white);
}

.directions-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.directions-options {
    margin-top: 2rem;
}

.direction-option {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 5px;
}

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

.company-info {
    background-color: var(--bg-white);
}

.company-details {
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.company-details p {
    margin-bottom: 0.75rem;
}

.thank-you-hero {
    background-color: var(--bg-light);
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-icon {
    margin: 0 auto 2rem;
}

.thank-you-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.next-steps {
    background-color: var(--bg-white);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step-box {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

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

.testimonial-featured {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 3rem;
    background-color: var(--bg-white);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
}

.testimonial-text-large {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author-large {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.legal-hero {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.legal-hero h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.legal-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
}

.legal-content {
    background-color: var(--bg-white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.legal-text h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-text ul,
.legal-text ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        padding: 5rem 2rem 2rem;
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .philosophy-item,
    .service-card,
    .stat-item,
    .process-step,
    .testimonial,
    .value-item,
    .team-member,
    .trust-item,
    .commitment-item,
    .pricing-card,
    .benefit-item,
    .contact-card,
    .step-box {
        flex: 1 1 100%;
    }

    .expertise-content {
        flex-direction: column;
    }

    .expertise-text,
    .expertise-highlights {
        flex: 1 1 100%;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-year {
        min-width: auto;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }
}
