.info-section {
    padding: 80px 0;
    transition: all 0.3s ease;
}

.info-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.info-section .container.layout-center {
    justify-content: center;
    text-align: center;
}

.info-section .container.layout-right {
    flex-direction: row-reverse;
}

.info-content {
    flex: 1;
}

.info-content h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}

.info-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.info-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}


.howto-section {
    transition: all 0.3s ease;
}

.howto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.howto-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}


.features-section {
    transition: all 0.3s ease;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-box {
    display: flex;
    flex-direction: column;
    padding: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box-content {
    margin-bottom: 40px;
}

.feature-box-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}


.faq-section {
    transition: all 0.3s ease;
}

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

.faq-item {
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-icon {
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    padding: 0 30px 20px;
    line-height: 1.8;
}

.blog-view-all {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .btn-view-all {
        padding: 6px 20px;
        font-size: 13px;
    }
}
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0 40px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -8px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.blog-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

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

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

.blog-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.blog-card-image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.blog-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    margin-bottom: 10px;
}

.blog-card-date {
    font-size: 12px;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a:hover {
    color: #3b82f6;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    margin-top: auto;
}

.blog-card-read-more:hover {
    gap: 10px;
    color: #2563eb;
}

.blog-view-all {
    text-align: center;
    margin-top: 20px;
}

.blog-view-all .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.blog-view-all .btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px #3b82f6;
}

/* App Section */
.app-section {
    padding: 80px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-section .install-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2) !important;
}

/* Ad Container Styles */
.content-ad-wrapper {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.content-ad-wrapper:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ad-container {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}

.ad-container iframe {
    max-width: 100%;
    margin: 0 auto;
}

ins.adsbygoogle {
    background: transparent;
    display: inline-block !important;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .section-title { font-size: 36px; }
    .info-content h2 { font-size: 32px; }
    .info-content p { font-size: 16px; }
    .app-section { padding: 60px 0; }
    .app-section h2 { font-size: 32px !important; }
}

@media (max-width: 768px) {
    .info-section .container {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }
    .info-image { order: -1; }
    .info-image img { max-width: 280px; }
    .info-content h2 { font-size: 28px; }
    .howto-grid { grid-template-columns: 1fr; }
    .features-list { gap: 30px; }
    .feature-box { padding: 30px; }
    .feature-box-content h3 { font-size: 26px; }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-card-image {
        height: 200px;
    }
    .app-section-wrapper {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }
    .app-image { order: -1; }
    .content-ad-wrapper {
        margin: 20px 0;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .section-title { font-size: 28px; }
    .info-image img { max-width: 220px; }
    .info-content h2 { font-size: 24px; }
    .feature-box { padding: 25px 20px; }
    .feature-box-content h3 { font-size: 24px; }
    .faq-question { font-size: 16px; }
    .blog-card-title {
        font-size: 20px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .content-ad-wrapper {
        background: #2d2d2d;
    }
    .content-ad-wrapper:hover {
        background: #333;
    }
}

/* Print styles */
@media print {
    .content-ad-wrapper {
        display: none !important;
    }
}




