body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    color: white;
    background-color: #000;
}

.container {
    position: relative;
    width: 1080px; /* Updated width */
    height: 1920px; /* Updated height */
    background: url('background.jpg') no-repeat;
    background-size: cover;
    margin: 0 auto;
}

.header {
    position: absolute;
    width: 930px; /* Adjusted width proportionally */
    height: 170px; /* Adjusted height proportionally */
    left: 75px; /* Adjusted left positioning */
    top: 240px; /* Adjusted top positioning */
    text-align: center;
}

.header h1, .header h2 {
    margin: 0;
    font-size: 50pt; /* Adjusted font size */
    font-weight: 800;
}

.content {
    position: absolute;
    width: 100%;
}

.group-1, .group-2, .group-3 {
    position: absolute;
    display: flex;
    align-items: center;
    width: 840px; /* Set a fixed width for proper alignment */
}

.group-1 {
    left: 120px; /* Adjusted left position */
    top: 800px; /* Adjusted top position */
}

.group-2 {
    left: 120px;
    top: 1096px; /* Adjusted top position */
}

.group-3 {
    left: 120px;
    top: 1392px; /* Adjusted top position */
}

.ellipse {
    width: 200px; /* Adjusted size proportionally */
    height: 200px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px; /* Adjusted margin */
    flex-shrink: 0; /* Prevent ellipse from shrinking */
}

.ellipse p {
    color: #1a44b6;
    font-weight: bold;
    font-size: 30pt; /* Adjusted font size */
    margin: 0;
    text-align: center;
}

.description-container {
    display: flex;
    flex-direction: column;
}

.description {
    font-size: 30pt; /* Adjusted font size */
    font-weight: 600;
    margin: 0;
    flex: 1; /* Take up remaining space */
}

.description-detail {
    font-size: 20pt; /* Adjusted font size */
    font-weight: 600;
    margin-top: 0;
}

.footer {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 0;
    padding: 15px; /* Adjusted padding */
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);
}

.footer .logo-left, .footer .logo-right {
    width: 150px; /* Adjusted logo width */
    height: auto;
    position: absolute;
}

.footer .logo-left {
    left: 40px; /* Adjusted left position */
    bottom: 5px;
}

.footer .logo-right {
    right: 40px; /* Adjusted right position */
    bottom: 30px; /* Adjusted bottom position */
}

.footer .date {
    font-size: 14pt; /* Adjusted font size */
    font-weight: 500;
    bottom: 15px;
}
