/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #fdfdfd;
}

/* Header Section */
.header-section {
    background: linear-gradient(135deg, #FF6F61, #FF3E4D);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.header-section h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.header-section p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
}

.header-section .btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #FF3E4D;
    background-color: #fff;
    border: none;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-section .btn:hover {
    background-color: #FF3E4D;
    color: #fff;
}

/* Articles Section */
.articles-section .article-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.articles-section .article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.article-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-top: 10px;
}

.article-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.article-card .btn-accent {
    background-color: #FF3E4D;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
}

.article-card .btn-accent:hover {
    background-color: #E6323F;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #FF3E4D, #FF6F61);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section .form-control {
    border-radius: 20px;
    border: none;
}

.cta-section .btn {
    border-radius: 20px;
    font-weight: bold;
    padding: 10px 20px;
}

/* Footer Section */
.footer-section {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-section p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
}

.footer-section a {
    color: #FF6F61;
    text-decoration: none;
}

.footer-section a:hover {
    color: #FF3E4D;
}
