
/* Header Styles */
header {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: center;
}

.logo img {
    max-width: 150px;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-grow: 1;
}

nav ul li a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
}

.login-button {
    background-color: #ffd700;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
/* Blog Page Styles */
.blog-intro {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.blog-list {
    text-align: center;
    padding: 50px 20px;
}

.blog-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-post {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}

.blog-post img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.blog-post h3 {
    font-size: 1.2rem;
    color: #333;
}

.blog-post p {
    font-size: 1rem;
    color: #555;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.cta-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffd700;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #333;
}
/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
}

.social-icons a {
    color: #ffd700;
    font-size: 1.5rem;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
}
