* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #191D32;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #191D32;
}

.logo {
    font-size: 2em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1em;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

.content {
    max-width: 50%;
}

.content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    color: white;
    font-size: 1em;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.btn i {
    margin-right: 10px;
}

.green {
    background-color: #28a745;
}

.image img {
    max-width: 100%;
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    main {
        flex-direction: column;
        text-align: center;
    }

    .content {
        max-width: 100%;
    }

    .content h2 {
        font-size: 2em;
    }

    .content p {
        font-size: 1em;
    }

    .buttons {
        justify-content: center;
    }

    .image img {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .content h2 {
        font-size: 1.5em;
    }

    .content p {
        font-size: 0.9em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}
