    /* General Body Styles */
    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
        margin: 0;
        background-color: #f4f7f9;
        color: #333;
    }

    /* Header and Navigation */
    .header {
        background-color: #ffffff;
        padding: 0 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #e6e6e6;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .logo {
        font-size: 1.8em;
        font-weight: bold;
        color: #2c3e50;
    }

    .nav-links a {
        color: #555;
        text-decoration: none;
        padding: 25px 20px;
        display: inline-block;
        font-weight: 500;
        transition: background-color 0.3s, color 0.3s;
    }

    .nav-links a:hover {
        background-color: #f0f0f0;
        color: #007bff;
    }

    /* Hero Section */
    .hero {
        text-align: center;
        padding: 80px 20px;
        background-color: #ffffff;
    }

    .hero h1 {
        font-size: 3em;
        margin-bottom: 20px;
        color: #2c3e50;
    }

    .hero p {
        font-size: 1.3em;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto 30px auto;
    }

    .cta-button {
        display: inline-block;
        background-color: #007bff;
        color: #ffffff;
        padding: 15px 35px;
        font-size: 1.2em;
        font-weight: bold;
        border-radius: 50px;
        text-decoration: none;
        transition: background-color 0.3s, transform 0.3s;
        box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    }

    .cta-button:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 40px 20px;
        font-size: 0.9em;
        color: #95a5a6;
    }
