:root {
    --orange: #ff5a47;
    --text: #222;
    --grey: #666;
    --light: #f7f7f7;
    --border: #ddd;
    --font: "Inter", Arial, sans-serif;
}

/* GLOBAL */
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
}

.geo-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* HERO */
.geo-hero {
    position: relative;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 20px;
}

.geo-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.geo-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 30%);
}

.geo-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.geo-hero-content h1 {
    font-size: 90px;
    font-weight: 900;
    margin: 0;
    line-height: 1em;
}

.geo-hero-content p {
    font-size: 20px;
    margin-top: 18px;
    font-weight: 600;
}

/* INTRO */
.geo-intro {
    padding: 100px 0;
}

.geo-intro-icon img {
    width: 100%;
}

.geo-intro-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
}

.geo-intro h2 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 25px;
        line-height: 1.2em;
        text-align: center;
}

.geo-intro-text p {
    font-size: 18px;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* FORM */
.geo-form-section {
    padding: 100px 0;
    background: var(--light);
}



/* STEPS */
.geo-steps-section {
    padding: 120px 0;
    text-align: center;
}

.geo-steps-section h2 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 70px;
    line-height: 1.2em;
}

.geo-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.geo-circle {
    width: 60px;
    height: 60px;
    border: 3px solid var(--orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--orange);
    margin: auto;
    margin-bottom: 20px;
}

.geo-step h3 {
    font-size: 20px;
    font-weight: 900;
}

.geo-step p {
    margin-top: 15px;
    font-size: 17px;
    color: var(--grey);
    line-height: 1.7;
}

.geo-step a {
    display: inline-block;
    margin-top: 18px;
    font-weight: 800;
    color: black;
    text-decoration: none;
}

/* PRINZIP */
.geo-principle {
    padding: 120px 0;
     background: var(--light);
}

.geo-principle h2 {
    text-align: center;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 80px;
     line-height: 1.2em;
}

.geo-principle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.geo-principle-grid h3 {
    font-size: 42px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 30px;
}

.geo-principle-grid p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--grey);
    margin-bottom: 25px;
}

/* CONTACT */
.geo-contact {
    padding: 120px 0;
    text-align: center;
}

.geo-contact h2 {
    font-size: 42px;
    font-weight: 900;
}

.geo-name {
    font-size: 22px;
    font-weight: 800;
    margin-top: 20px;
}

.geo-role {
    font-size: 20px;
    color: var(--grey);
}

.geo-contact-data {
    margin-top: 35px;
    font-size: 20px;
}

.geo-contact-data a {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 1000px) {
    .geo-steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .geo-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

   
}

@media(max-width: 600px) {
    .geo-steps-grid {
        grid-template-columns: 1fr;
    }

    .geo-hero-content h1 {
        font-size: 48px;
    }

    .geo-principle-grid {
    grid-template-columns: 1fr;
   
}
