/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9; /* Light Gray Background */
    color: #333; /* Dark Gray Text */
    overflow-x: hidden;
}

.header {
    background: #264653; /* Deep Blue Background */
    color: #f4f4f9; /* Light Gray Text */
    text-align: center;
    padding: 20px;
}

.header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.header p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.nav a {
    color: #e9c46a; /* Golden Accent */
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #f4a261; /* Bright Accent */
}

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

.blog-card {
    background: #ffffff; /* White Background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    width: 100%;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-card h2 {
    color: #264653; /* Deep Blue Text */
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-card p, .blog-card ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #555; /* Mid Gray Text */
}

.blog-card ul {
    padding-left: 20px;
    list-style-type: disc;
}

.cta-button {
    display: inline-block;
    background: #e76f51; /* Coral Red Button */
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #d35449; /* Darker Coral */
}

.quote-tool {
    background: #264653; /* Deep Blue Background */
    color: #f4f4f9;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
}

.footer {
    background: #264653; /* Deep Blue Background */
    color: #f4f4f9;
    text-align: center;
    padding: 15px 0;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .blog-card {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .header p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
