:root {
    --primary: #1a56db;
    --primary-dark: #1243af;
    --primary-light: #3b82f6;
    --primary-gradient: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);
    --secondary: #0ea5e9;
    --accent: #38bdf8;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --light-blue: #eff6ff;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gray-900);
    overflow-x: hidden;
    background: var(--white);
}

a { text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
ul { list-style: none; padding: 0; margin: 0; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

.section-padding { padding: 90px 0; }
.section-title {
    text-align: center;
    margin-bottom: 55px;
}
.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}
.section-title h2 span { color: var(--primary); }
.section-title .title-line {
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 0 auto 15px;
    border-radius: 4px;
}
.section-title p {
    color: var(--gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-custom {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26,86,219,0.3);
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26,86,219,0.4);
    color: var(--white);
}
.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.navbar {
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}
.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--dark); }
.navbar-brand i { margin-right: 8px; color: var(--primary-light); }
.nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--light-blue);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
    transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }
.navbar-toggler {
    border: none;
    padding: 0;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,86,219,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    background: var(--primary-gradient);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; }
.hero-content .badge {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
    display: inline-block;
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 540px;
    line-height: 1.7;
}
.hero-content .btn-group { gap: 12px; }
.hero-content .btn-hero-primary {
    background: var(--white);
    color: var(--primary);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero-content .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: var(--primary);
}
.hero-content .btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}
.hero-content .btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}
.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}
.hero-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
}
.hero-stats .stat-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.issues-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}
.issues-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}
.issues-card .icon-box {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}
.issues-card:hover .icon-box {
    background: var(--primary-gradient);
    color: var(--white);
    transform: rotateY(180deg);
}
.issues-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}
.issues-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.feature-section {
    background: var(--light-blue);
}
.feature-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 24px;
}
.feature-box:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}
.feature-box .f-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}
.feature-box h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--dark);
}
.feature-box p {
    color: var(--gray-500);
    font-size: 0.92rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.steps-section .step-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.steps-section .step-number {
    width: 55px;
    height: 55px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(26,86,219,0.3);
}
.steps-section .step-item h5 {
    font-weight: 700;
    margin-bottom: 10px;
}
.steps-section .step-item p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.blog-card .blog-img {
    height: 220px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}
.blog-card .blog-img .blog-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--white);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.blog-card .blog-body {
    padding: 25px;
}
.blog-card .blog-body .blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}
.blog-card .blog-body .blog-meta i { margin-right: 5px; }
.blog-card .blog-body h5 {
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-card .blog-body h5 a {
    color: var(--dark);
}
.blog-card .blog-body h5 a:hover { color: var(--primary); }
.blog-card .blog-body p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}
.blog-card .blog-body .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-section {
    background: var(--primary-gradient);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-section h2 {
    color: var(--white);
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}
.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}
.cta-section .btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
}
.cta-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: var(--primary);
}

.newsletter-section {
    background: var(--light-blue);
}
.newsletter-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.newsletter-box h3 {
    font-weight: 700;
    margin-bottom: 10px;
}
.newsletter-box p {
    color: var(--gray-500);
    margin-bottom: 25px;
}
.newsletter-box .input-group {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.newsletter-box .input-group input {
    border: 1px solid var(--gray-300);
    padding: 14px 20px;
    font-size: 1rem;
}
.newsletter-box .input-group input:focus {
    border-color: var(--primary);
    box-shadow: none;
}
.newsletter-box .input-group button {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    font-weight: 600;
}

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.footer p { font-size: 0.95rem; line-height: 1.7; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    transition: var(--transition);
}
.footer ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.footer .social-links { display: flex; gap: 12px; margin-top: 20px; }
.footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}
.footer .social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}
.footer .footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}
.footer .footer-bottom a {
    color: var(--accent);
}
.footer .footer-bottom a:hover { color: var(--white); }

.page-header {
    background: var(--primary-gradient);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
}
.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    position: relative;
}
.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}
.page-header .breadcrumb-item.active { color: var(--white); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

.about-content h3 { font-weight: 700; color: var(--dark); margin-bottom: 15px; }
.about-content p { color: var(--gray-500); line-height: 1.8; margin-bottom: 15px; font-size: 1.05rem; }
.about-features { margin-top: 30px; }
.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--gray-700);
}
.about-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}
.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.service-detail-card .s-icon {
    width: 75px;
    height: 75px;
    background: var(--light-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}
.service-detail-card:hover .s-icon {
    background: var(--primary-gradient);
    color: var(--white);
}
.service-detail-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}
.service-detail-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}
.service-detail-card .service-list {
    text-align: left;
}
.service-detail-card .service-list li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-detail-card .service-list li i { color: var(--primary); font-size: 0.8rem; }

.contact-info-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 18px;
    transition: var(--transition);
    margin-bottom: 20px;
}
.contact-info-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}
.contact-info-box .c-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--light-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}
.contact-info-box h6 { font-weight: 700; margin-bottom: 5px; }
.contact-info-box p { color: var(--gray-500); margin-bottom: 0; font-size: 0.95rem; }

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.contact-form .form-control {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-submit {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
}
.contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26,86,219,0.3);
}

.blog-single { margin-bottom: 30px; }
.blog-sidebar .widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}
.blog-sidebar .widget h5 {
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}
.blog-sidebar .widget-categories li { margin-bottom: 10px; }
.blog-sidebar .widget-categories li a {
    color: var(--gray-700);
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}
.blog-sidebar .widget-categories li a:hover {
    background: var(--light-blue);
    color: var(--primary);
}
.pagination .page-link {
    color: var(--primary);
    border: 1px solid var(--gray-300);
    margin: 0 3px;
    border-radius: 8px !important;
    padding: 8px 16px;
    font-weight: 500;
}
.pagination .page-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.pagination .page-item.active .page-link {
    background: var(--primary-gradient);
    border-color: var(--primary);
}

.legal-content h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
    margin-top: 30px;
}
.legal-content h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    margin-top: 25px;
}
.legal-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.02rem;
}
.legal-content ul {
    padding-left: 25px;
    margin-bottom: 15px;
}
.legal-content ul li {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}
.testimonial-card .stars { color: #f59e0b; margin-bottom: 15px; }
.testimonial-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-card .t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .t-author .t-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-card .t-author h6 { margin-bottom: 2px; font-weight: 700; }
.testimonial-card .t-author span { color: var(--gray-500); font-size: 0.85rem; }

.faq-section .accordion-item {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-section .accordion-button {
    padding: 18px 24px;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    font-size: 1rem;
}
.faq-section .accordion-button:not(.collapsed) {
    background: var(--light-blue);
    color: var(--primary);
    box-shadow: none;
}
.faq-section .accordion-button:focus { box-shadow: none; }
.faq-section .accordion-body {
    padding: 20px 24px;
    color: var(--gray-600);
    line-height: 1.7;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(26,86,219,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    color: var(--white);
}

@media (max-width: 991px) {
    .hero-section { min-height: auto; padding: 100px 0 60px; text-align: center; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-content .btn-group { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { margin-top: 40px; }
    .hero-image img { max-width: 70%; }
    .section-title h2 { font-size: 1.8rem; }
    .section-padding { padding: 60px 0; }
}
@media (max-width: 767px) {
    .hero-content h1 { font-size: 1.9rem; }
    .hero-content p { font-size: 1rem; }
    .hero-content .btn-group { flex-direction: column; align-items: center; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stats .stat-item h3 { font-size: 1.5rem; }
    .page-header h1 { font-size: 1.8rem; }
    .page-header { padding: 100px 0 40px; }
    .newsletter-box { padding: 30px 20px; }
    .contact-form { padding: 25px 20px; }
    .footer { text-align: center; }
    .footer .social-links { justify-content: center; }
    .section-title h2 { font-size: 1.5rem; }
    .section-padding { padding: 45px 0; }
    .feature-box { flex-direction: column; text-align: center; }
    .feature-box .f-icon { margin: 0 auto; }
}
