body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: auto;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

body::before {
    content: "";
    background-image: url('../images/logo.png'); /* Replace with your logo image path */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px; /* Adjust width as needed */
    height: 80px; 
    opacity: 1; /* Adjust opacity as needed */
    z-index: 3;
}

.section {
    width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
    text-align: center;
    height: 100vh;
    min-width: 200vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

.registration-section {
    background-image: url('../images/background1.png'); /* Replace with your background image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-section {
    background-image: url('../images/background2.png'); /* Replace with your background image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-section {
    background-image: url('../images/background3.png'); /* Replace with your background image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.registration-form, .content {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 500px;
}

.registration-form h2, .content h2 {
    margin-top: 0;
}

.registration-form label, .content label {
    display: block;
    margin: 10px 0 5px;
}

.registration-form input, .content input, .content textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.registration-form button, .content button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.registration-form button:hover, .content button:hover {
    background-color: #45a049;
}

.line-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.line-with-text::before,
.line-with-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid black;
}

.line-with-text:not(:empty)::before {
    margin-right: .25em;
}

.line-with-text:not(:empty)::after {
    margin-left: .25em;
}
.terminator-button {
    background-color: red;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
}

.terminator-button:hover {
    background-color: darkred;
}