.container360 {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content {
    max-width: 800px;
}

.content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.content ul {
    list-style: none;
}

.content ul li {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #34495e;
    position: relative;
    padding-left: 30px;
}

.content ul li::before {
    content: '✦'; /* Unicode star bullet icon */
    position: absolute;
    left: 0;
    color: #28608f;
    font-size: 1.2rem;
}

.image-section {
    max-width: 570px;
}

.image-section img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background-color: #28608f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #288adb;
    color: #fff;
}

@media (max-width: 768px) {
    .container360 {
        flex-direction: column;
        text-align: center;
    }

    .image-section {
        margin-top: 30px;
    }

    .content h1 {
        font-size: 2rem;
    }
}