/* Root Variables */
:root {
    --primary-color: #0052cc;
    --primary-dark: #003d99;
    --secondary-color: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 15px rgba(0, 82, 204, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

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

/* Navigation Bar */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

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

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

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 26, 77, 0.05) 0%, rgba(0, 82, 204, 0.08) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 82, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 82, 204, 0.05) 0%, transparent 50%);
    animation: backgroundFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    animation: fadeInDown 0.8s ease forwards;
    opacity: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 82, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 82, 204, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    50% {
        background: linear-gradient(45deg, var(--primary-dark) 0%, var(--primary-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    100% {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Values Section */
.hero-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 82, 204, 0.05);
    border-radius: 12px;
}

.value-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    background: var(--white);
    animation: buttonFloat 2.5s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.1);
}

@keyframes buttonFloat {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 4px 15px rgba(0, 82, 204, 0.1);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 82, 204, 0.2);
    }
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmerEffect 2s infinite;
}

@keyframes shimmerEffect {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.download-btn:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 82, 204, 0.08);
    box-shadow: 0 10px 35px rgba(0, 82, 204, 0.25);
    transform: translateY(-8px);
}

.download-btn i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.download-btn small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

.download-btn span {
    font-weight: 600;
}

.users-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.users-avatars {
    display: flex;
    gap: -0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: 2px solid var(--white);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.users-text span {
    font-weight: 700;
    color: var(--text-dark);
}

.users-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    aspect-ratio: 15/30;
    max-width: 400px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 8px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.carousel-track {
    display: flex;
    height: 100%;
    animation: carouselSwipe 42s infinite ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    flex-shrink: 0;
}

/* Carousel slide with full-screen house image */
.carousel-slide:not(:first-child) {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

@keyframes carouselSwipe {
    0% { transform: translateX(0%); }
    14.285% { transform: translateX(-100%); }
    28.57% { transform: translateX(-200%); }
    42.855% { transform: translateX(-300%); }
    57.14% { transform: translateX(-400%); }
    71.425% { transform: translateX(-500%); }
    85.71% { transform: translateX(-600%); }
    100% { transform: translateX(0%); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.status-bar {
    background: var(--white);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.app-header-top {
    flex: 1;
    overflow-y: auto;
    background: var(--white);
}

.app-header-top::-webkit-scrollbar {
    width: 4px;
}

.app-header-top::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.app-header-top::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.back-btn, .refresh-btn, .menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 0.5rem;
}

.back-btn, .refresh-btn, .menu-btn:hover {
    opacity: 0.7;
}

.app-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.app-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.header-buttons {
    display: flex;
    gap: 0.5rem;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: #f5f5f5;
    border-radius: 6px;
    margin: 0.5rem;
    font-size: 0.8rem;
}

.search-bar input {
    border: none;
    background: none;
    outline: none;
    font-size: 0.75rem;
    flex: 1;
}

.filter-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    margin: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
}

.welcome-section {
    padding: 0.6rem;
}

.welcome-section h3 {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.welcome-section p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.featured-section h4 {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    padding: 0 0.5rem;
}

.featured-property {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 0.5rem;
}

.property-image-featured {
    width: 100%;
    height: 70px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.property-info {
    padding: 0.6rem;
}

.price-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.3rem;
}

.property-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.property-meta {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.property-location {
    font-size: 0.75rem;
    color: var(--text-light);
}

.sale-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #a855f7;
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
}

.sale-badge-2 {
    background-color: #3b82f6;
}

.sale-badge-3 {
    background-color: #ef4444;
}

.app-header-bottom {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 0.2rem 0;
}

.bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.3rem;
}

.nav-item i {
    font-size: 1.2rem;
    color: var(--text-light);
}

.nav-item.active i {
    color: var(--primary-color);
}

.nav-item p {
    font-size: 0.6rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.nav-item.active p {
    color: var(--primary-color);
    font-weight: 600;
}

/* Carousel Dots */
.carousel-dots {
    display: none;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 82, 204, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.dot:hover {
    background-color: var(--primary-color);
}

/* Scroll Arrow */
.scroll-arrow {
    text-align: center;
    padding: 2rem 0;
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideIn 0.6s ease forwards;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-card:nth-child(odd) {
    animation-name: slideInLeft;
}

.feature-card:nth-child(even) {
    animation-name: slideInRight;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 82, 204, 0.15);
}

.feature-card:hover .feature-icon {
    animation: spinIcon 0.8s ease infinite;
}

@keyframes spinIcon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Download CTA Section */
.download-cta {
    background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
    color: var(--white);
    padding: 4rem 2rem;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.download-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat h4 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.platform-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: bloomPulse 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: glowBloom 2.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.platform-card > * {
    position: relative;
    z-index: 1;
}

@keyframes bloomPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(255, 255, 255, 0.25), 0 0 30px rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

@keyframes glowBloom {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

.platform-card:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.platform-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.platform-btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: buttonShimmer 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

@keyframes buttonShimmer {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
    }
}

.platform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
}

.how-it-works h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

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

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
    animation: stepBloom 2.5s ease-in-out infinite;
}

.step-card:nth-child(1) { animation-delay: 0s; }
.step-card:nth-child(2) { animation-delay: 0.3s; }
.step-card:nth-child(3) { animation-delay: 0.6s; }
.step-card:nth-child(4) { animation-delay: 0.9s; }
.step-card:nth-child(5) { animation-delay: 1.2s; }
.step-card:nth-child(6) { animation-delay: 1.5s; }

@keyframes stepBloom {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 82, 204, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(0, 82, 204, 0.25);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 82, 204, 0.1);
    }
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 82, 204, 0.2);
}

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

.step-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

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

.testimonial-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.6s ease;
    perspective: 1000px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4rem;
    color: rgba(0, 82, 204, 0.1);
    line-height: 1;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-30px) scale(0.5);
    animation: slideQuote 0.8s ease forwards;
    pointer-events: none;
}

.testimonial-card:hover::before {
    animation: slideQuotePulse 1s ease infinite;
}

@keyframes slideQuote {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideQuotePulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(5px) scale(1.1);
    }
}

.testimonial-card:hover {
    transform: rotateY(8deg) rotateX(-5deg) translateZ(0);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.2);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    animation: floatingStars 2.5s ease-in-out infinite;
}

@keyframes floatingStars {
    0%, 100% {
        transform: translateY(0px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px);
        opacity: 0.8;
    }
}

.testimonial-card:hover .stars {
    animation: floatingStarsHover 0.8s ease infinite;
}

@keyframes floatingStarsHover {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

.testimonial-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInAuthor 0.6s ease forwards;
    opacity: 0;
}

.testimonial-card:hover .testimonial-author {
    animation: slideInAuthorHover 0.6s ease forwards;
}

@keyframes slideInAuthor {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInAuthorHover {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card:hover .author-avatar {
    animation: spinDot 0.8s ease infinite;
}

@keyframes spinDot {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

/* Blog Section */
.blog {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
}

.blog h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

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

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 82, 204, 0.2);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

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

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.7) 0%, rgba(3, 61, 153, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    animation: floatDate 2.5s ease-in-out infinite;
}

@keyframes floatDate {
    0%, 100% {
        transform: translateY(0px);
        opacity: 1;
    }
    50% {
        transform: translateY(-8px);
        opacity: 0.8;
    }
}

.blog-card:hover .blog-date {
    animation: floatDateHover 0.6s ease forwards;
}

@keyframes floatDateHover {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-12px);
        opacity: 1;
    }
}

.blog-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-card:hover .read-more {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(5px);
}

.read-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Policy Pages */
.policy-section {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
    min-height: 100vh;
}

.policy-section h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.policy-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    line-height: 1.8;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.1);
}

.policy-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.contact-info {
    background: rgba(0, 82, 204, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

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

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

.policy-footer {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1) 0%, rgba(0, 82, 204, 0.05) 100%);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.policy-footer p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
    color: var(--white);
    padding: 4rem 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    line-height: 1.8;
}

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

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

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

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

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

/* Newsletter Section */
.newsletter-section {
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-section h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.newsletter-section p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-btn {
    padding: 0.6rem 1.2rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Footer Newsletter Styles */
.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.8rem 0;
    align-items: left;
}

.footer-newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
}

.footer-newsletter-form input::placeholder {
    color: #999;
}

.footer-newsletter-btn {
    padding: 0.6rem 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    animation: pulse 1.5s infinite;
}

.footer-newsletter-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.footer-newsletter-btn:active {
    transform: scale(0.98) translateY(0);
    box-shadow: 0 2px 6px rgba(0, 82, 204, 0.2);
}

.footer-newsletter-disclaimer {
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0.4rem 0 0 0;
}

/* Touch-Friendly Optimizations */
@media (max-width: 1024px) {
    /* Larger tap targets for mobile (minimum 44-48px) */
    button,
    .cta-button,
    .download-btn,
    .nav-link,
    a[role="button"] {
        min-height: 48px;
        min-width: 48px;
        padding: 0.75rem 1.5rem;
    }
    
    /* Touch-optimized spacing */
    .nav-menu li {
        padding: 1rem 0;
    }
    
    .features-card,
    .step-card,
    .testimonial-card,
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    /* Better finger-friendly padding for clickable elements */
    a {
        padding: 0.5rem;
        margin: 0.25rem;
    }
    
    /* Increase form input sizes */
    input,
    textarea,
    select {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Call Button Styling */
.call-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.3);
}

.call-button i {
    font-size: 0.95rem;
}

/* Mobile Device Optimizations */
@media (max-width: 768px) {
    .newsletter-section h2 {
        font-size: 1.1rem;
    }

    .newsletter-section p {
        font-size: 0.8rem;
    }

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

    .newsletter-form input {
        width: 100%;
        min-width: unset;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    body.is-mobile {
        /* Optimize spacing on mobile */
        --spacing-multiplier: 1.1;
    }
    
    /* Make platform buttons full width on small screens */
    .platform-btn {
        width: 100%;
        display: block;
        margin: 1rem 0;
    }
    
    /* Call button enhanced on mobile */
    .call-button {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 1.05rem;
    }
    
    /* Phone links on mobile */
    a[href^="tel:"] {
        color: var(--primary-color);
        font-weight: 600;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 4rem 1rem;
        padding-right: 5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-right: 0;
    }

    .hero-text {
        align-items: flex-start;
        padding-left: 0;
        padding-right: 2rem;
    }

    .hero-image {
        padding-right: 1.5rem;
    }

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

    .hero-image {
        margin-top: 2rem;
    }

    .phone-mockup {
        max-width: 400px;
        margin: 0 auto;
        margin-right: 1.5rem;
    }

    .features h2,
    .how-it-works h2,
    .testimonials h2,
    .blog h2 {
        font-size: 2rem;
    }

    .download-text h2 {
        font-size: 2rem;
    }

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

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        justify-content: center;
    }

    .users-info {
        justify-content: center;
    }

    .download-content {
        grid-template-columns: 1fr;
    }

    .download-stats {
        grid-template-columns: 1fr;
    }

    .download-platforms {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo span {
        display: none;
    }

    .hero {
        padding: 3rem 0.75rem;
        padding-right: 5rem;
    }

    .hero-text {
        align-items: flex-start;
        padding-left: 0;
        padding-right: 2.5rem;
    }

    .hero-image {
        padding-right: 2rem;
    }

    .hero-badge {
        text-align: left;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .phone-mockup {
        margin-right: 2rem;
    }

    .features-grid,
    .steps-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .download-stats {
        grid-template-columns: 1fr;
    }

    .download-platforms {
        grid-template-columns: 1fr;
    }
}

/* ==================== BLOG PAGE STYLES ==================== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    animation: fadeInDown 0.8s ease-out;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Blog Search Form */
.blog-search-form {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    margin: 0 auto;
}

.blog-search-form input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
    color: var(--dark);
}

.blog-search-form input::placeholder {
    color: var(--light-gray);
}

.blog-search-form button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.blog-search-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

/* Category Filters */
.blog-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Blog Content */
.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--light-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Read More Link */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    padding-top: 2rem;
}

.load-more-btn {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.3);
}

/* Tablet & Mobile Responsive */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-hero p {
        font-size: 1rem;
    }

    .blog-filters {
        gap: 0.7rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .blog-search-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 2rem 1rem;
        min-height: 250px;
    }

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

    .blog-hero p {
        font-size: 0.9rem;
    }

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

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

    .blog-filters {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-meta {
        gap: 1rem;
        font-size: 0.8rem;
    }
}

