body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reverse {
    flex-direction: row-reverse;
}

.text {
    flex: 1;
    padding: 0 20px;
    font-size: 18px;
    color: #333;
}

.image {
    flex: 1;
    text-align: center;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 0;
}

.track-section {
    text-align: center;
    margin: 40px 0;
}

.track-text {
    font-size: 18px;
    margin-bottom: 20px;
}

.track-button .button {
    padding: 10px 20px;
    background-color: #ffcc00;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.track-button .button:hover {
    background-color: #cc9900;
}

