* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #000000;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    text-align: left;
    padding-left: 60px; /* Moves everything 60px from the left */
    position: relative;
}

.header {
    position: absolute;
    top: 20px;
    left: 65px;
    font-size: 16px;
    font-weight: bold;
}

.top-right-image {
    position: absolute;
    top: 80px;
    right: 80px;
    width: 350px; /* Adjust size as needed */
    border-radius: 15px;
    height: auto;
    box-shadow: 0 0 55px #ffffff;
    transition: transform 0.3s ease-in-out;
}

.top-right-image:hover {
    transform: scale(1.2);
}

h1 {
    color: #BDDFFE;
    font-size: 4rem;
    font-weight: bold;
    max-width: 80%;
    position: absolute;
    bottom: 200px; /* 40px above the buttons */
    left: 65px; /* Aligns with buttons */
}

.cta-container {
    position: absolute;
    bottom: 50px;
    left: 65px; /* Moves buttons 60px from the left */
    display: flex;
    gap: 30px; /* Space between buttons */
}

.cta-buttons {
    display: flex;
    gap: 95px; /* Ensures spacing between buttons */
}

.cta-buttons a {
    text-decoration: none;
    color: white;
    border: 2px solid #BDDFFE;
    padding: 15px 40px;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    min-width: 250px;
    transition: transform 0.3s ease-in-out, background-color 0.3s;
}

.cta-buttons a:hover {
    transform: scale(1.2);
    background-color: #000000;
    color: #BDDFFE;
}

.arrow {
    font-size: 24px;
    font-weight: bold;
    margin: 0 10px;
}