/* Simple Blog Section Styles */
.simple-blog-section {
    background: #f5f7fa;
    padding: 60px 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-simple-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-simple-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 10px 0;
}

.blog-simple-header p {
    font-size: 1.1rem;
    color: #718096;
    margin: 0;
    font-weight: 400;
}
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.blog-card-link:hover {
    transform: translateY(-5px);
}

.blog-card-link:hover .blog-simple-card {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-link:hover .read-time-simple {
    color: #00958B;
}

.blog-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-simple-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s ease;
}

.blog-simple-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.blog-image-simple {
    width: 100%;
    height: 200px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e2e8f0;
}

.blog-image-simple img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-content-simple {
    padding: 25px;
}

.blog-content-simple h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.blog-content-simple p {
    color: #718096;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.blog-meta-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.read-time-simple {
    color: #00A69B;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    order: 1;
}

.read-time-simple:hover {
    color: #00958B;
    text-decoration: underline;
}

.read-time-simple i {
    font-size: 11px;
    margin-left: 4px;
}

.read-time-simple i {
    font-size: 11px;
}

.duration-simple {
    color: #a0aec0;
    font-size: 13px;
    font-weight: 400;
    order: 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .simple-blog-section {
        padding: 40px 0;
    }
    
    .blog-simple-header h2 {
        font-size: 1.8rem;
    }
    
    .blog-simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-content-simple {
        padding: 20px;
    }
    
    .blog-content-simple h3 {
        font-size: 1.1rem;
    }
    
    .blog-meta-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
/* Modern CTA Section Styles */
.modern-cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 80px 0;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.modern-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(59,130,246,0.3)"/><circle cx="10" cy="30" r="1" fill="rgba(147,197,253,0.2)"/><circle cx="30" cy="10" r="0.8" fill="rgba(96,165,250,0.25)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.4;
}

.cta-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-icon-container {
    position: relative;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00bfff, #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00bfff;
    border-radius: 50%;
    animation: particle-float 4s infinite linear;
    opacity: 0.7;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Exact match for the uploaded image style */
.modern-cta-section {
    background: #f5f7fa;
    padding: 0;
    margin: 0;
    position: relative;
    border-top: 3px solid #00bcd4;
}

.cta-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: white;
    padding: 30px 50px;
    margin: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    max-width: none;
    gap: 40px;
}

/* Remove the icon completely */
.cta-icon-container {
    display: none;
}

.cta-text {
    flex: 1;
    text-align: right;
    padding-right: 20px;
}

.cta-text h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.cta-text p {
    font-size: 1rem;
    color: #718096;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.cta-features {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin: 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4a5568;
    font-size: 13px;
    font-weight: 500;
}

.cta-feature i {
    color: #00A69B;
    font-size: 14px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.cta-primary-btn {
    background: #00A69B;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: none;
    border: none;
    width: 180px;
    justify-content: center;
    white-space: nowrap;
}

.cta-primary-btn:hover {
    background: #00acc1;
    color: white;
    text-decoration: none;
}

.cta-secondary-btn {
    background: #e2f8ff;
    color: #00A69B;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    border: 1px solid #b3e5f0;
    width: 180px;
    justify-content: center;
    white-space: nowrap;
}

.cta-secondary-btn:hover {
    background: #ccf2ff;
    color: #00acc1;
    text-decoration: none;
}

.cta-secondary-btn i {
    font-size: 12px;
}

.cta-primary-btn i {
    font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        padding: 25px 20px;
        text-align: center;
        gap: 25px;
    }
    
    .cta-text {
        text-align: center;
        padding-right: 0;
    }
    
    .cta-features {
        justify-content: center;
        gap: 20px;
    }
    
    .cta-actions {
        align-items: center;
        flex-direction: row;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cta-text h2 {
        font-size: 1.2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
    }
}