body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5faff; /* Light blue background */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    height: 100vh;
}

.text-content {
    max-width: 600px;
    padding: 20px;
}

.text-content h2 {
    color: #007bff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.text-content h1 {
    font-size: 48px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #0056b3;
}

.illustration {
    max-width: 500px;
    max-height: 500px;
    padding-right: 50px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .text-content, .illustration {
        max-width: 100%;
        padding: 0;
    }

    .illustration {
        padding-top: 20px;
    }
}



.section {
    padding: 50px 20px;
    margin-left: 100px;
}

.section h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}



body {
    font-family: Arial, sans-serif;
    padding: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
}

.breadcrumb li {
    font-size: 16px;
    color: #666;
}

.breadcrumb li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out;
}

.breadcrumb li a:hover {
    background-color: #e0e0e0;
}

.breadcrumb li + li::before {
    content: ">";
    margin: 0 10px;
    color: #ccc;
}












