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

        :root {
            --primary-color: #0076d2;
            --secondary-color: #005a9e;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
            --bg-white: #ffffff;
            --border-color: #e5e7eb;
            --accent-color: #0076d2;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

		nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            padding: 0 2rem;
        }

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

	.logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            text-decoration: none;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

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

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-phone-link {
            font-weight: 600 !important;
            color: var(--primary-color) !important;
        }

        .nav-phone-link:hover {
            color: var(--secondary-color) !important;
        }
		
		/* hero-index-index Section */
        .hero-index {
            padding: 9rem 2rem 8rem;
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://www.startpackingup.com/img/test-banner1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            position: relative;
        }

        .hero-index-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .hero-index-content {
            flex: 1;
            min-width: 300px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-index-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 0.75rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            width: fit-content;
        }

        .hero-index h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero-index-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.7;
            font-weight: 400;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero-index-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 0;
        }

        .hero-index-button {
            padding: 0.875rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .hero-index-button-primary {
            background-color: white;
            color: var(--primary-color);
        }

        .hero-index-button-secondary {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid white;
        }

        .hero-index-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .hero-index-image-wrapper {
            flex: 0 0 500px;
            min-width: 300px;
            position: relative;
        }

        .hero-index-image {
            width: 500px;
            height: 350px;
            border-radius: 1rem;
            overflow: hidden;
            position: relative;
            border: 3px solid rgba(0, 118, 210, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .hero-index-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

		.cta-button {
            background-color: var(--primary-color);
            color: white !important;
            padding: 0.625rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
            font-size: 0.9375rem;
        }

        .cta-button:hover {
            background-color: var(--secondary-color);
            color: white !important;
        }
	
		.mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--text-dark);
            margin: 5px 0;
            transition: 0.3s;
        }

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

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

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

		.mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(255, 255, 255, 0.98);
            z-index: 999;
            padding: 6rem 2rem 2rem;
            overflow-y: auto;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            padding-top: 1.5rem;
        }

        .mobile-menu ul li a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 600;
            display: block;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-menu .cta-button {
            background-color: transparent;
            color: var(--text-dark) !important;
            padding: 0.75rem 0;
            border-radius: 0;
            font-size: 1.25rem;
            display: block;
            margin-top: 0;
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-menu .cta-button:hover {
            background-color: transparent;
            color: var(--text-dark) !important;
        }

		.hero {
            height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://www.startpackingup.com/img/test-banner1.webp');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

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

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.7;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-button {
            padding: 1rem 2.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-block;
        }

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

        .hero-button-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 118, 210, 0.4);
        }

        .hero-button-secondary {
            background-color: white;
            color: var(--primary-color);
            border: 2px solid white;
        }
		
        .hero-button-secondary:hover {
            background-color: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
        }
		
		.process-section {
            padding: 6rem 2rem;
            background-color: var(--bg-white);
        }

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

        .process-intro {
            text-align: center;
            margin-bottom: 4rem;
        }

        .process-intro h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .process-intro p {
            font-size: 1.25rem;
            color: var(--text-light);
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
        }

        .process-steps {
            display: grid;
            gap: 3rem;
        }

        .process-step {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 2rem;
            align-items: start;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 800;
            box-shadow: 0 4px 20px rgba(0, 118, 210, 0.3);
        }

        .step-content h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .step-content p {
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.8;
        }

		.category-intro {
            padding: 4rem 2rem;
            background-color: var(--bg-white);
        }

        .category-intro-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .category-intro p {
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .category-intro p:last-child {
            margin-bottom: 0;
        }
		
		.blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 3rem 0 4rem;
        }

        .blog-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .blog-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .blog-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-category {
            display: inline-block;
            background: rgba(0, 118, 210, 0.1);
            color: var(--primary-color);
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding: 0.4rem 0.9rem;
            border-radius: 0.3rem;
            margin-bottom: 1rem;
            border-left: 3px solid var(--primary-color);
        }

        .blog-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }

        .blog-author {
            font-size: 0.9rem;
            color: var(--text-light);
            font-style: italic;
        }

		.blog-categories {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 3rem;
            border-radius: 1.5rem;
            margin-top: 4rem;
        }

        .blog-categories h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 2rem;
        }

        .category-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .category-tag {
            display: inline-block;
            background: white;
            color: var(--primary-color);
            font-size: 0.95rem;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .category-tag:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

		@media (max-width: 912px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .blog-categories {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .blog-image {
                height: 200px;
            }
        }

        @media (max-width: 375px) {
            .blog-categories {
                padding: 2rem 1rem;
            }

            .blog-categories h3 {
                font-size: 1.5rem;
            }

            .category-tag {
                font-size: 0.85rem;
                padding: 0.6rem 1.2rem;
            }
        }
		
		.cta-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button-white {
            padding: 1rem 2.5rem;
            background-color: white;
            color: var(--primary-color);
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-block;
        }

        .cta-button-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
		
		footer {
            background-color: var(--text-dark);
            color: white;
            padding: 4rem 2rem 2rem;
        }

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

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 769px) {
            .footer-container {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 3rem;
            }

            .footer-grid {
                display: contents;
            }

            .footer-section:nth-child(1) { 
                grid-column: 1;
                grid-row: 1;
            }
            .footer-section:nth-child(2) { 
                grid-column: 1;
                grid-row: 2;
            }
            .footer-section:nth-child(3) { 
                grid-column: 2;
                grid-row: 1;
            }
            .footer-section:nth-child(4) { 
                grid-column: 3;
                grid-row: 1;
            }
            .footer-grid:nth-child(2) .footer-section:nth-child(1) { 
                grid-column: 4;
                grid-row: 1;
            }
            .footer-grid:nth-child(2) .footer-section:nth-child(2) { 
                grid-column: 4;
                grid-row: 2;
            }

            .footer-bottom {
                grid-column: 1 / -1;
            }
        }

        .footer-section h4 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

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

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

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

        .footer-section a:hover {
            color: white;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a img {
            width: 32px;
            height: 32px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-social a:hover img {
            opacity: 1;
        }

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

/* Medium screens - iPad Mini, Surface Pro 7 */
        @media (min-width: 768px) and (max-width: 912px) {
            .hero {
                padding: 8rem 2rem 8rem;
            }
        }

        /* Responsive */
        @media (max-width: 912px) {
            .nav-links {
                display: none;
            }

            .nav-container {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 0.5rem 2rem;
                gap: 0.5rem;
            }

            .logo {
                order: 1;
            }

            .mobile-menu-btn {
                display: block;
                position: relative;
                right: auto;
                order: 2;
            }

            .hero {
                padding: 12rem 2rem 6rem;
            }

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

            .hero-subtitle {
                font-size: 1.25rem;
            }

            .process-step {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .step-number {
                margin: 0 auto;
            }

            .footer-section {
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

        /* Extra small screens - Galaxy S9, iPhone SE */
        @media (max-width: 375px) {
            nav {
                padding: 0 1rem;
            }

            .hero {
                padding: 12rem 1rem 6rem;
            }

            .process-section {
                padding: 4rem 1rem;
            }

            .cta-section {
                padding: 4rem 1rem;
            }

            footer {
                padding: 4rem 1rem 2rem;
            }

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

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

            .process-intro h2 {
                font-size: 2rem;
            }
        }
		
		/* 404 Error Page */
        .error-content {
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .error-image {
            margin-bottom: 3rem;
        }

        .error-image img {
            max-width: 400px;
            width: 100%;
            height: auto;
        }

        .error-message {
            margin-bottom: 3rem;
        }

        .error-message h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .error-message p {
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .error-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .error-link-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 1rem;
            text-decoration: none;
            color: inherit;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .error-link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .error-link-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .error-link-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .error-link-card p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin: 0;
        }

        /* Responsive - 404 Page */
        @media (max-width: 912px) {
            .error-links {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .error-message h2 {
                font-size: 2rem;
            }

            .error-image img {
                max-width: 300px;
            }
        }

        @media (max-width: 768px) {
            .error-links {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 375px) {
            .error-message h2 {
                font-size: 1.75rem;
            }

            .error-link-icon {
                font-size: 2.5rem;
            }
        }

		.hero-blog {
            padding: 8rem 2rem 4rem;
            min-height: auto;
        }

        .post-author {
            font-size: 1rem;
            color: white;
            font-style: italic;
        }

        .blog-post-section {
            padding: 4rem 2rem;
            background: white;
        }

        .blog-post-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .post-content {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .post-content .lead {
            font-size: 1.35rem;
            font-weight: 500;
            line-height: 1.7;
            color: var(--text-dark);
            margin-bottom: 2rem;
        }

        .post-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 3rem 0 1.5rem;
            line-height: 1.3;
        }

        .post-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 2rem 0 1rem;
        }

        .post-content p {
            margin-bottom: 1.5rem;
        }

        .post-content ul,
        .post-content ol {
            margin: 1.5rem 0 1.5rem 2rem;
        }

        .post-content li {
            margin-bottom: 0.75rem;
        }

        .post-image {
            margin: 2.5rem 0;
        }

        .post-image img {
            width: 100%;
            height: auto;
            border-radius: 0.75rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

		.image-caption {
            font-size: 0.95rem;
            color: var(--text-light);
            font-style: italic;
            margin-top: 0.75rem;
            text-align: center;
        }

        .pro-tip {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 1.5rem 2rem;
            border-radius: 0.75rem;
            border-left: 4px solid var(--primary-color);
            margin: 2rem 0;
        }

        .pro-tip h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
        }

        .pro-tip p {
            margin-bottom: 0;
            font-size: 1rem;
        }
		
		.pros-cons-section {
            margin: 2rem 0;
        }

        .pros-section {
            background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
            padding: 1.5rem 2rem;
            border-radius: 0.75rem;
            border-left: 4px solid #4caf50;
            margin-bottom: 1.5rem;
        }

        .cons-section {
            background: linear-gradient(135deg, #ffebee 0%, #fef5f5 100%);
            padding: 1.5rem 2rem;
            border-radius: 0.75rem;
            border-left: 4px solid #f44336;
        }

        .pros-section p:first-of-type strong,
        .cons-section p:first-of-type strong {
            font-size: 1.1rem;
            color: #2c3e50;
            display: block;
            margin-bottom: 1rem;
        }

        .pros-section p strong:first-child {
            color: #2e7d32;
            font-size: 1rem;
        }

        .cons-section p strong:first-child {
            color: #c62828;
            font-size: 1rem;
        }

        .pros-section p,
        .cons-section p {
            margin-bottom: 0.75rem;
            line-height: 1.7;
        }

        .pros-section p:last-child,
        .cons-section p:last-child {
            margin-bottom: 0;
        }
		
		.author-bio {
            display: flex;
            gap: 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 2.5rem;
            border-radius: 1rem;
            margin: 4rem 0 3rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .author-image {
            flex-shrink: 0;
        }

        .author-image img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-top: 0;
            margin-bottom: 0.5rem;
        }

        .author-info h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .author-info p {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .related-articles {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 2px solid #e9ecef;
        }

        .related-articles h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2rem;
            text-align: center;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .related-card {
            background: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .related-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }

        .related-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 0;
        }
		
		@media (max-width: 912px) {
            .hero-blog {
                padding: 8rem 1.5rem 3rem;
            }

            .blog-post-section {
                padding: 3rem 1.5rem;
            }

            .post-content .lead {
                font-size: 1.2rem;
            }

            .post-content h2 {
                font-size: 1.75rem;
            }

            .author-bio {
                flex-direction: column;
                text-align: center;
            }

            .author-image img {
                margin: 0 auto;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 375px) {
            .post-content h2 {
                font-size: 1.5rem;
            }

            .pro-tip {
                padding: 1.25rem 1.5rem;
            }
        }

		.hero-about {
            padding: 10rem 2rem 6rem;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://www.startpackingup.com/img/test-banner1.webp');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

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

        .hero-about h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero-about-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.7;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero-about-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-about-button {
            padding: 1rem 2.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-block;
        }

        .hero-about-button-primary {
            background-color: var(--primary-color);
            color: white;
        }

        .hero-about-button-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 118, 210, 0.4);
        }

        .hero-about-button-secondary {
            background-color: white;
            color: var(--primary-color);
            border: 2px solid white;
        }

        .hero-about-button-secondary:hover {
            background-color: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
        }

        .team-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 4rem 0;
        }

        .stat-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 2.5rem 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1;
        }

        .stat-box p {
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Team Profiles */
        .team-profiles {
            margin-top: 4rem;
        }

        .team-member {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            align-items: start;
        }

        .team-member.reverse {
            grid-template-columns: 1fr 400px;
        }

        .team-member.reverse .member-image {
            order: 2;
        }

        .team-member.reverse .member-content {
            order: 1;
        }

        .member-image {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .member-image img {
            width: 100%;
            height: auto;
            display: block;
        }

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

        .member-content h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .member-content p {
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        /* Responsive - Team sections */
        @media (max-width: 912px) {
            .team-stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .team-member,
            .team-member.reverse {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .team-member.reverse .member-image,
            .team-member.reverse .member-content {
                order: unset;
            }

            .member-image {
                max-width: 400px;
                margin: 0 auto;
            }
        }

        @media (max-width: 375px) {
            .stat-number {
                font-size: 2.5rem;
            }

            .stat-box {
                padding: 2rem 1.5rem;
            }
        }
		
		/* Valuation Form Styles */
        .valuation-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0rem 0rem;
        }

        .valuation-form-card {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 3rem;
            border-radius: 1rem;
            box-shadow: 0 10px 40px rgba(0, 118, 210, 0.2);
            margin-bottom: 3rem;
        }

        .valuation-form-card h2 {
            color: white;
            font-size: 1.75rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .valuation-form-card p {
            color: rgba(255, 255, 255, 0.95);
            text-align: center;
            margin-bottom: 2rem;
            font-size: 1.125rem;
        }

        .form-step {
            background: white;
            padding: 2rem;
            border-radius: 0.75rem;
        }

        .form-step.hidden {
            display: none;
        }

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

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

        .form-group input {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: 0.5rem;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

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

        .form-submit-btn {
            width: 100%;
            background: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .form-submit-btn:hover {
            background: var(--secondary-color);
        }

        .form-submit-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .benefit-card {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 0.75rem;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }

        .benefit-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .success-message {
            background: #10b981;
            color: white;
            padding: 2rem;
            border-radius: 0.75rem;
            text-align: center;
        }

        .success-message h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .back-button {
            display: inline-block;
            margin-top: 1rem;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .back-button:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .valuation-form-card {
                padding: 2rem 1.5rem;
            }
        }
		
		/* Reviews Section */
        .reviews-section {
            padding: 4rem 2rem;
            background-color: var(--bg-white);
        }

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

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

        .review-card {
            background-color: var(--bg-light);
            padding: 2rem;
            border-radius: 0.75rem;
            border: 1px solid var(--border-color);
        }

        .review-stars {
            margin-bottom: 1rem;
        }

        .review-stars img {
            height: 20px;
        }

        .review-text {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .review-author {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .review-source {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .listings-section {
            padding: 4rem 2rem;
            background-color: var(--bg-light);
        }

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

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

        .listing-card {
            background-color: white;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
        }

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

        .listing-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .listing-content {
            padding: 1.5rem;
        }

        .listing-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .listing-address {
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .listing-price {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }

        .listing-details {
            font-size: 0.875rem;
            color: var(--text-light);
        }

		.credentials-carousel-wrapper {
            position: relative;
            margin-top: 3rem;
            overflow: hidden;
        }

        .credentials-grid {
            display: flex;
            gap: 2rem;
            transition: transform 0.5s ease-in-out;
        }

        .credential-card {
            background-color: white;
            padding: 2rem;
            border-radius: 0.75rem;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
            flex: 0 0 calc(25% - 1.5rem);
            min-width: 200px;
        }

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

        .credential-card img {
            max-width: 100%;
            height: auto;
            max-height: 170px;
            object-fit: contain;
        }

        .credentials-list {
            margin-top: 3rem;
            padding: 2rem;
            background-color: white;
            border-radius: 0.75rem;
            text-align: left;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .credentials-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .credentials-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .credentials-list li:last-child {
            margin-bottom: 0;
        }

        .credentials-list li::before {
            content: "✓";
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            background-color: #e8f4f8;
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.875rem;
            margin-top: 0.1rem;
        }

        @media (max-width: 1200px) {
            .credential-card {
                flex: 0 0 calc(33.333% - 1.33rem);
            }
        }

        @media (max-width: 900px) {
            .credential-card {
                flex: 0 0 calc(50% - 1rem);
            }
        }

        @media (max-width: 600px) {
            .credential-card {
                flex: 0 0 100%;
            }
        }

        .home-value-section {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #0076d2 0%, #005a9e 100%);
            color: white;
            text-align: center;
        }

        .home-value-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .home-value-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .home-value-section p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .home-value-button {
            background-color: white;
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .home-value-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .stats-index-section {
            padding: 4rem 2rem 0;
            background-color: var(--bg-white);
        }

        .stats-index-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .stats-index-intro {
            margin-bottom: 3rem;
        }

        .stats-index-intro-split {
            display: flex;
            gap: 3rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .stats-index-intro-image {
            flex: 0 0 300px;
            min-width: 250px;
        }

        .stats-index-intro-image img {
            width: 300px;
            height: 300px;
            border-radius: 0.75rem;
            display: block;
            object-fit: cover;
        }

        .stats-index-intro-text {
            flex: 1;
            text-align: left;
        }

        .stats-index-intro-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: flex-start;
        }

        .stats-index-intro-button {
            display: inline-block;
            padding: 0.875rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: transform 0.2s, box-shadow 0.2s;
            background-color: var(--primary-color);
            color: white !important;
        }

        .stats-index-intro-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 118, 210, 0.3);
        }

        .stats-index-intro-button-secondary {
            background-color: white;
            color: var(--primary-color) !important;
            border: 2px solid var(--primary-color);
        }

        .stats-index-intro-button-secondary:hover {
            background-color: var(--bg-light);
        }

        .stats-index-intro h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .stats-index-intro p {
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.7;
            font-weight: 400;
        }

        /* Why Choose Us Box */
        .stats-index-highlight-box {
            background-color: #f5f5f5;
            padding: 3rem 2rem;
            border-radius: 1rem;
            margin-top: 3rem;
        }

        .stats-index-highlight-box h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            text-align: center;
        }

        .stats-index-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 0;
        }

        .stat-card {
            padding: 2rem;
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Features Section */
        .features-section {
            padding: 4rem 2rem;
            background-color: var(--bg-light);
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-badge {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 0.375rem 0.875rem;
            border-radius: 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.7;
            font-weight: 400;
        }
		/* Blog Section */
        .blog-index-section {
            padding: 4rem 2rem;
            background-color: var(--bg-white);
        }

        .blog-index-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-index-section .section-header {
            margin-bottom: 0;
        }

        .blog-index-categories {
            margin-bottom: 3rem;
        }

        .blog-index-categories-title {
            text-align: center;
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        .blog-index-categories-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .blog-index-category-tag {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 2px solid transparent;
            border-radius: 2rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .blog-index-category-tag::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, #0056a3 100%);
            transition: width 0.3s ease;
            z-index: 0;
        }

        .blog-index-category-tag:hover::before {
            width: 100%;
        }

        .blog-index-category-tag span {
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .blog-index-category-tag:hover {
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 118, 210, 0.25);
        }

        .blog-index-category-tag:hover span {
            color: white;
        }

        /* Mobile responsive */
        @media (max-width: 912px) {
            .blog-index-categories-grid {
                gap: 0.75rem;
            }

            .blog-index-category-tag {
                padding: 0.65rem 1.25rem;
                font-size: 0.85rem;
            }
        }

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

        .blog-index-card {
            background-color: white;
            border-radius: 0.75rem;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: transform 0.2s, box-shadow 0.2s;
        }

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

        .blog-index-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-index-content {
            padding: 1.5rem;
        }

        .blog-index-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .blog-index-title a {
            color: var(--text-dark);
            text-decoration: none;
        }

        .blog-index-title a:hover {
            color: var(--primary-color);
        }

        .blog-index-excerpt {
            font-size: 0.875rem;
            color: var(--text-light);
            line-height: 1.6;
        }

		/* Contact Bar */
        .contact-bar {
            background-color: var(--text-dark);
            color: white;
            padding: 0.75rem 2rem;
            text-align: center;
            font-size: 0.875rem;
        }

        .contact-bar a {
            color: white;
            font-weight: 600;
            text-decoration: none;
            margin: 0 1rem;
        }

        /* Medium screens - iPad Mini, Surface Pro 7 */
        @media (min-width: 768px) and (max-width: 912px) {
            .hero-index {
                padding: 8rem 2rem 8rem;
            }

            .hero-index-badge {
                margin-top: 3rem;
            }
        }

        /* Responsive */
        @media (max-width: 912px) {
            .nav-links {
                display: none;
            }

            .nav-container {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 0.5rem 2rem;
                gap: 0.5rem;
            }

            .logo {
                order: 1;
            }

            .mobile-menu-btn {
                display: block;
                position: relative;
                right: auto;
                order: 2;
            }

            .hero-index {
                padding: 4rem 2rem 3rem;
            }

            .stats-index-section {
                padding-top: 2rem;
            }

            .stats-index-intro-split {
                flex-direction: column;
            }

            .stats-index-intro-image {
                order: 2;
                flex: 0 0 auto;
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .stats-index-intro-image img {
                width: 250px;
                height: 250px;
            }

            .stats-index-intro-text {
                order: 1;
                text-align: center;
            }

            .stats-index-intro-buttons {
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            .stats-index-intro-button {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .hero-index-container {
                flex-direction: column;
                text-align: center;
            }

            .hero-index-content {
                text-align: center;
            }

            .hero-index-badge {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-index-buttons {
                justify-content: center;
            }

            .hero-index-image-wrapper {
                flex: 0 0 auto;
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .hero-index-image {
                width: 300px;
                height: 210px;
            }

            .hero-index h1 {
                font-size: 2.5rem;
                letter-spacing: -0.02em;
            }

            .hero-index-buttons {
                flex-direction: column;
            }

            .section-title {
                font-size: 2rem;
                letter-spacing: -0.02em;
            }

            .stat-number {
                font-size: 2.5rem;
                letter-spacing: -0.02em;
            }
        }

        /* Extra small screens - Galaxy S9, iPhone SE */
        @media (max-width: 375px) {
            nav {
                padding: 0 1rem;
            }

            .hero-index {
                padding: 4rem 1rem 3rem;
            }

            .stats-index-section {
                padding: 4rem 1rem 0;
            }

            .process-section {
                padding: 4rem 1rem;
            }

            .features-section {
                padding: 4rem 1rem;
            }

            .reviews-section {
                padding: 4rem 1rem;
            }

            .blog-index-section {
                padding: 4rem 1rem;
            }

            

            .hero-index h1 {
                font-size: 2rem;
            }

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