.modern-notice {
    background-color: rgba(26, 188, 156, 0.1);
    border-left: 3px solid #1abc9c;
    padding: 10px;
    margin: 15px 0;
    border-radius: 0 4px 4px 0;
}


/* Blog section styling */

.blog-section {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--card-border);
}

.blog-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.blog-article {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--card-border);
}

.blog-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-article h3 {
    margin-bottom: 10px;
}

.blog-article a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-article a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}


/* SEO optimized content styling */

.seo-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
}

.seo-content ul,
.seo-content ol {
    margin-left: 1.5rem;
    line-height: 1.6;
}

.seo-content li {
    margin-bottom: 0.5rem;
}


/* Related Tools Section */

.related-tools-section {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--card-border);
}

.related-tools-section h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.related-tools-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.tool-card {
    background-color: var(--tool-card-bg);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.tool-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: white;
}

.tool-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.tool-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tool-card a {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-color);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: auto;
}

.tool-card a:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tool-card a i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.tool-card a:hover i {
    transform: translateX(3px);
}

.section-divider {
    height: 1px;
    background-color: var(--card-border);
    margin: 40px 0;
}


/* Go to Top Button */

.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

.go-to-top i {
    font-size: 1.2rem;
}

.upload-icon:hover {
    transform: scale(1.1);
    color: #4895ef !important;
    border-color: #4895ef !important;
    background: rgba(72, 149, 239, 0.2) !important;
}