* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("images/pc-background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    width: 100%;
    height: 100vh;

    overflow: hidden;
}

.content-wrapper {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;

    padding: 60px 40px;
}


/* LOGO */

.logo {
    width: 220px;
    height: auto;

    margin-bottom: 32px;
}


/* SERVICES */

.services {
    display: flex;
    justify-content: center;
    gap: 20px;

    width: 100%;
    max-width: 900px;

    margin-bottom: 32px;
}

.service-card {
    flex: 1;

    min-height: 110px;
    padding: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;

    color: #ffffff;

    background: rgba(0, 0, 0, 0.45);

    border: 1px solid rgba(255, 255, 255, 0.15);
}


/* EMAIL AREA */

.email-form {
    width: 500px;
    max-width: 90%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-input {
    width: 100%;
    height: 56px;

    padding: 0 20px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;

    background: #ffffff;
    color: #222222;

    border: none;
    outline: none;
}

.email-input::placeholder {
    font-family: Arial, Helvetica, sans-serif;
    color: #777777;
}

.email-button {
    margin-top: 24px;

    min-width: 180px;
    height: 56px;

    padding: 0 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;

    background: #1f6782;
    color: #ffffff;

    text-decoration: none;

    cursor: pointer;
}

.email-button {
    /* keep all your existing styles */
    transition: background 0.2s ease;
}

.email-button:hover {
    background: #1c414f;
}