* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50vh;
    padding: 40px;
}

.text {
    width: 50%;
    font-size: 25px;
    text-align: center;
}

.image-container {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

img, svg {
    width: 80%;
    max-height: 90%;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.button {
    padding: 15px 30px;
    font-size: 1.5rem;
    color: white;
    background: #007bff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.button:hover {
    background: #0056b3;
}

