
        * {
            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: #e0e0e0;
            background-color: #0f0f0f;
        }

        /* Intro Section */
        .intro-section {
            background: #1a1a1a;
            padding: 3rem 2rem;
            border-bottom: 1px solid #2a2a2a;
        }

        .intro-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .intro-description {
            font-size: 1.1rem;
            color: #b0b0b0;
            line-height: 1.8;
            max-width: 900px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
            position: relative;
            overflow: hidden;
            padding: 6rem 2rem;
        }

        .hero-decoration {
            position: absolute;
            opacity: 0.1;
            pointer-events: none;
        }

        .shapes-top-right {
            top: 20px;
            right: 40px;
            font-size: 4rem;
        }

        .shapes-bottom-left {
            bottom: 40px;
            left: 20px;
            font-size: 5rem;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }

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

        .hero .description {
            font-size: 1.1rem;
            color: #b0b0b0;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Section Container */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            color: #ffffff !important;
        }

        .section-icon {
            font-size: 2rem;
            margin-right: 0.5rem;
        }

        /* Popular Calculators Section */
        .calculators-section {
            background: #0f0f0f;
            padding: 4rem 2rem;
        }

        .calculators-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .calculator-card {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid #8b5cf6;
            transition: all 0.3s;
        }

        .calculator-card:hover {
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
            transform: translateY(-4px);
            background: #252525;
        }

        .calculator-card h3 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .calculator-card p {
            color: #b0b0b0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Compound Interest Calculator Section */
        .compound-section {
            background: #0f0f0f;
            padding: 4rem 2rem;
            border-top: 1px solid #2a2a2a;
            border-bottom: 1px solid #2a2a2a;
        }

        .compound-intro {
            max-width: 900px;
            margin: 0 auto 3rem;
            background: #1a1a1a;
            padding: 2.5rem;
            border-radius: 8px;
            border-left: 4px solid #06b6d4;
        }

        .intro-text {
            color: #b0b0b0;
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .intro-text:last-child {
            margin-bottom: 0;
        }

        .calculator-placeholder {
            max-width: 900px;
            margin: 2.5rem auto;
            padding: 3rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
            border-radius: 8px;
            border: 2px dashed #8b5cf6;
            text-align: center;
        }

        /* Formula Section */
        .formula-section {
            max-width: 900px;
            margin: 3rem auto;
            background: #1a1a1a;
            padding: 2.5rem;
            border-radius: 8px;
            border-top: 4px solid #8b5cf6;
        }

        .formula-title {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .formula-description {
            color: #b0b0b0;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .formula-box {
            background: #252525;
            padding: 2rem;
            border-radius: 6px;
            margin: 1.5rem 0;
            border-left: 4px solid #06b6d4;
        }

        .formula-text {
            color: #06b6d4;
            font-family: 'Courier New', monospace;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
            margin: 0;
        }

        .formula-legend {
            margin: 2rem 0;
            padding: 1.5rem;
            background: #252525;
            border-radius: 6px;
            border-left: 4px solid #ec4899;
        }

        .formula-legend p {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .legend-list {
            list-style: none;
            padding: 0;
        }

        .legend-list li {
            color: #b0b0b0;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .legend-list strong {
            color: #06b6d4;
        }

        .contribution-note {
            background: #252525;
            padding: 1.5rem;
            border-radius: 6px;
            border-left: 4px solid #10b981;
            margin-top: 1.5rem;
        }

        .contribution-note p {
            color: #b0b0b0;
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 0.75rem;
        }

        .contribution-note p:first-child {
            color: #ffffff;
            font-weight: 600;
        }

        .contribution-note p:last-child {
            margin-bottom: 0;
        }

        /* Comparison Section */
        .comparison-section {
            max-width: 900px;
            margin: 3rem auto;
            background: #1a1a1a;
            padding: 2.5rem;
            border-radius: 8px;
            border-top: 4px solid #f59e0b;
        }

        .comparison-title {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .comparison-intro {
            color: #b0b0b0;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .comparison-item {
            padding: 1.5rem;
            border-radius: 6px;
            border-left: 4px solid;
        }

        .comparison-item.simple {
            background: #252525;
            border-left-color: #ef4444;
        }

        .comparison-item.compound {
            background: #252525;
            border-left-color: #10b981;
        }

        .comparison-item h4 {
            color: #ffffff;
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
        }

        .comparison-item p {
            color: #b0b0b0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .example-note {
            background: #252525;
            padding: 1.5rem;
            border-radius: 6px;
            border-left: 4px solid #06b6d4;
            margin-top: 1.5rem;
        }

        .example-note p {
            color: #b0b0b0;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* Strategies Section */
        .strategies-section {
            max-width: 1100px;
            margin: 3rem auto;
            background: #1a1a1a;
            padding: 2.5rem;
            border-radius: 8px;
            border-top: 4px solid #06b6d4;
        }

        .strategies-title {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .strategies-intro {
            color: #b0b0b0;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .strategies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .strategy-card {
            background: #252525;
            padding: 2rem;
            border-radius: 8px;
            border-top: 4px solid #8b5cf6;
            transition: all 0.3s;
            position: relative;
            padding-top: 3.5rem;
        }

        .strategy-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
        }

        .strategy-number {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: #8b5cf6;
            opacity: 0.5;
        }

        .strategy-card h4 {
            color: #ffffff;
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
        }

        .strategy-card p {
            color: #b0b0b0;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .strategy-card strong {
            color: #06b6d4;
        }

        /* Features Section */
        .features-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
            padding: 4rem 2rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

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

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1;
        }

        .feature-item h3 {
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .feature-item p {
            color: #b0b0b0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .btn-primary {
            background-color: #ffffff;
            color: #8b5cf6;
        }

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

        /* FAQ Section */
        .faq-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
            padding: 5rem 2rem;
        }

        .faq-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-item {
            background: #252525;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 4px solid #8b5cf6;
            position: relative;
            overflow: hidden;
        }

        .faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 12px 24px rgba(139, 92, 246, 0.2);
            transform: translateY(-6px);
            background: #2d2d2d;
        }

        .faq-item:hover::before {
            opacity: 1;
        }

        .faq-question {
            position: relative;
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #3a3a3a;
        }

        .faq-question::before {
            content: '?';
            position: absolute;
            right: 0;
            top: -5px;
            font-size: 2.5rem;
            color: #ffffff;
            opacity: 0.35;
            font-weight: 800;
        }

        .faq-question h3 {
            color: #ffffff;
            font-size: 1.15rem;
            margin: 0;
            font-weight: 700;
            line-height: 1.4;
            padding-right: 2rem;
        }

        .faq-answer {
            color: #b0b0b0;
            line-height: 1.8;
        }

        .faq-answer p {
            margin-bottom: 1rem;
            font-size: 0.95rem;
            color: #b0b0b0;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer strong {
            color: #8b5cf6;
            font-weight: 600;
        }

        .faq-item:nth-child(1) {
            border-top-color: #8b5cf6;
        }

        .faq-item:nth-child(2) {
            border-top-color: #06b6d4;
        }

        .faq-item:nth-child(3) {
            border-top-color: #ec4899;
        }

        .faq-item:nth-child(4) {
            border-top-color: #f59e0b;
        }

        .faq-item:nth-child(5) {
            border-top-color: #10b981;
        }

        .faq-item:nth-child(6) {
            border-top-color: #6366f1;
        }

        .faq-item:nth-child(7) {
            border-top-color: #14b8a6;
        }

        .faq-item:nth-child(8) {
            border-top-color: #f97316;
        }

        /* SEO Section */
        .seo-section {
            background: #0f0f0f;
            padding: 4rem 2rem;
            border-top: 1px solid #2a2a2a;
        }

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

        .seo-content p {
            font-size: 1.05rem;
            color: #b0b0b0;
            line-height: 1.9;
            text-align: center;
        }

        .seo-content strong {
            color: #8b5cf6;
            font-weight: 600;
        }

        /* About Us Section */
        .about-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
            padding: 4rem 2rem;
            border-top: 1px solid #2a2a2a;
        }

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

        .about-intro {
            font-size: 1.1rem;
            color: #b0b0b0;
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .about-description {
            font-size: 1rem;
            color: #b0b0b0;
            line-height: 1.9;
            margin-bottom: 2.5rem;
        }

        .values-container {
            margin-top: 2rem;
        }

        .values-container h3 {
            font-size: 1.3rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .values-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .values-list li {
            background: #252525;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #8b5cf6;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .value-icon {
            color: #8b5cf6;
            font-size: 1.5rem;
            flex-shrink: 0;
            line-height: 1;
        }

        .values-list li strong {
            color: #ffffff;
            display: block;
            margin-bottom: 0.25rem;
        }

        .values-list li span:last-child {
            color: #b0b0b0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* About Section Title - White */
        .about-section .section-title {
            color: #ffffff !important;
        }

        /* Footer Styles */
        .calculator-footer {
            background: transparent;
            color: #333;
            padding: 40px 20px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-title {
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 30px;
            text-shadow: none;
            color: #ffffff;
        }
        
        .calculator-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .calculator-section {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
            border: 1px solid #e9ecef;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .calculator-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .section-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
            border-bottom: 2px solid #dee2e6;
            padding-bottom: 8px;
        }
        
        .calculator-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 8px;
        }
        
        .calculator-link {
            color: #495057;
            text-decoration: none;
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 13px;
            transition: all 0.3s ease;
            background: #fff;
            border: 1px solid #dee2e6;
        }
        
        .calculator-link:hover {
            background: #e9ecef;
            color: #212529;
            border-color: #adb5bd;
            transform: scale(1.02);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #dee2e6;
            font-size: 14px;
            color: #6c757d;
        }

        .footer-bottom p {
            margin: 10px 0;
        }

        .footer-bottom a {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Wireframe Labels (for design reference) */
        .wireframe-label {
            background: rgba(139, 92, 246, 0.1);
            border-top: 2px dashed #8b5cf6;
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            color: #8b5cf6;
            font-weight: 600;
            text-transform: uppercase;
            display: none;
        }

        body.show-wireframe .wireframe-label {
            display: block;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 3rem 1.5rem;
            }

            .hero h1 {
                font-size: 1.75rem;
                margin-bottom: 1rem;
            }

            .hero .description {
                font-size: 1rem;
                padding: 0 0.5rem;
            }

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

            .calculators-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .calculator-card {
                padding: 1.5rem;
            }

            .calculator-card h3 {
                font-size: 1.1rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .feature-item {
                padding: 1rem;
            }

            .feature-icon {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }

            .shapes-top-right {
                font-size: 2rem;
                right: 10px;
            }

            .shapes-bottom-left {
                font-size: 2.5rem;
                bottom: 10px;
                left: 10px;
            }

            .cta-section h2 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .cta-section p {
                font-size: 1rem;
            }

            .faq-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .faq-item {
                padding: 1.5rem;
            }

            .faq-question h3 {
                font-size: 1rem;
            }

            .intro-title {
                font-size: 1.5rem;
            }

            .intro-description {
                font-size: 1rem;
            }

            .seo-content p {
                font-size: 1rem;
            }

            .about-intro {
                font-size: 1rem;
            }

            .about-description {
                font-size: 0.95rem;
            }

            .values-container h3 {
                font-size: 1.1rem;
            }

            .values-list {
                grid-template-columns: 1fr;
            }

            .calculator-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .calculator-links {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
            
            .footer-title {
                font-size: 24px;
            }

            /* Compound Interest Mobile */
            .compound-intro {
                padding: 1.5rem;
            }

            .formula-section,
            .comparison-section,
            .strategies-section {
                padding: 1.5rem;
                margin: 2rem auto;
            }

            .formula-title,
            .comparison-title,
            .strategies-title {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }

            .formula-description,
            .comparison-intro,
            .strategies-intro {
                font-size: 0.95rem;
            }

            .strategy-card {
                padding: 1.5rem;
                padding-top: 3rem;
            }

            .strategy-number {
                font-size: 1.25rem;
                top: 0.75rem;
                right: 1rem;
            }

            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .strategies-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 14px;
            }

            .hero {
                padding: 2rem 1rem;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .hero .description {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .section-title {
                font-size: 1.3rem;
                margin-bottom: 1.5rem;
            }

            .calculators-grid {
                gap: 1rem;
            }

            .calculator-card {
                padding: 1.25rem;
            }

            .calculator-card h3 {
                font-size: 1rem;
            }

            .calculator-card p {
                font-size: 0.9rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .feature-icon {
                font-size: 1.75rem;
            }

            .feature-item h3 {
                font-size: 1rem;
            }

            .btn {
                font-size: 0.95rem;
                padding: 0.6rem 1.25rem;
            }

            .shapes-top-right {
                font-size: 1.5rem;
            }

            .shapes-bottom-left {
                font-size: 2rem;
            }

            .calculators-section,
            .features-section,
            .cta-section,
            .faq-section,
            .seo-section,
            .about-section,
            .compound-section {
                padding: 2rem 1rem;
                margin: 1.5rem 0;
            }

            .faq-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .faq-item {
                padding: 1.25rem;
            }

            .faq-question h3 {
                font-size: 0.95rem;
                margin-bottom: 0.75rem;
            }

            .faq-question::before {
                font-size: 2rem;
                right: -5px;
            }

            .faq-answer p {
                font-size: 0.9rem;
                margin-bottom: 0.5rem;
            }

            .intro-section {
                padding: 2rem 1rem;
            }

            .intro-title {
                font-size: 1.3rem;
                margin-bottom: 0.75rem;
            }

            .intro-description {
                font-size: 0.95rem;
            }

            .seo-content p {
                font-size: 0.9rem;
            }

            .about-intro {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .about-description {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            .values-container h3 {
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .values-list {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .values-list li {
                padding: 1rem;
            }

            .value-icon {
                font-size: 1.25rem;
            }

            .values-list li strong {
                font-size: 0.95rem;
            }

            .values-list li span:last-child {
                font-size: 0.85rem;
            }

            /* Compound Interest Mobile Small */
            .compound-intro {
                padding: 1rem;
                margin: 1.5rem auto;
            }

            .intro-text {
                font-size: 0.95rem;
                margin-bottom: 1rem;
            }

            .calculator-placeholder {
                padding: 1.5rem;
                margin: 1.5rem auto;
            }

            .formula-section,
            .comparison-section,
            .strategies-section {
                padding: 1rem;
                margin: 1rem auto;
            }

            .formula-title,
            .comparison-title,
            .strategies-title {
                font-size: 1.1rem;
                margin-bottom: 0.75rem;
            }

            .formula-description,
            .comparison-intro,
            .strategies-intro {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }

            .formula-box,
            .formula-legend,
            .contribution-note,
            .example-note {
                padding: 1rem;
                margin: 1rem 0;
            }

            .formula-text {
                font-size: 1rem;
            }

            .legend-list li {
                font-size: 0.9rem;
                margin-bottom: 0.5rem;
            }

            .strategy-card {
                padding: 1rem;
                padding-top: 2.5rem;
            }

            .strategy-card h4 {
                font-size: 1rem;
                margin-bottom: 0.5rem;
            }

            .strategy-card p {
                font-size: 0.9rem;
            }

            .strategy-number {
                font-size: 1.1rem;
                top: 0.5rem;
                right: 0.75rem;
            }

            .comparison-item {
                padding: 1rem;
            }

            .comparison-item h4 {
                font-size: 1rem;
            }

            .comparison-item p {
                font-size: 0.9rem;
            }

            .strategies-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
    