* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0e0f11 url('../images/background.jpg') center bottom no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Open Sans', sans-serif;
    color: #91969a;
    line-height: 1.5;
}


.ge-wrapper {
    max-width: 1220px;
    width: 98%;
    margin: 20px auto;
    background-color: #0e0f11;
    border: 1px solid #1d1e21;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}


.ge-container {
    padding: 0 32px;
}


h1,
h2,
h3,
.ge-logo-text,
.ge-menu a,
.ge-btn,
.ge-cta-title,
.ge-footer-title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    line-height: 1.2;
}

.ge-title-highlight {
    color: #ecf15e;
    font-weight: 300;
}

h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.ge-section-subhead {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
}


.ge-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-weight: 300;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: 'Ubuntu', sans-serif;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
}

.ge-btn--dark {
    background-color: #fff;
    color: #000;
}

.ge-btn--outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 11px 27px;
}

.ge-btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #ecf15e;
    color: #ecf15e;
}

.ge-btn--dark:hover {
    background-color: #ecf15e;
    color: #000;
    transform: translateY(-2px);
}


.ge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-bottom: 1px solid #1d1e21;
    flex-wrap: wrap;
}

.ge-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.ge-logo img {
    height: 30px;
    width: auto;
    margin-top: -2px;
}

.ge-brand {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.3px;
}

.ge-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.ge-menu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.ge-menu a {
    text-decoration: none;
    color: #91969a;
    font-size: 1rem;
    transition: color 0.2s;
    font-weight: 300;
}

.ge-menu a:hover {
    color: #ecf15e;
}


.ge-mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid #1d1e21;
    border-radius: 8px;
    padding: 8px 12px;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
}


.ge-banner {
    background-image: url('../images/pattern.png');
    background-repeat: repeat;
    background-size: 45px;
    text-align: center;
    padding: 80px 32px 90px;
    position: relative;
}
.ge-banner::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 250px;
    background: #ecf15e;
    filter: blur(150px);
    border-radius: 50%;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.ge-banner h1 {
    font-size: 3.8rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.ge-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: #b0b6bb;
}

.ge-banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.ge-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.ge-card {
    background-color: #111215;
    border: 1px solid #1d1e21;
    border-radius: 5px;
    padding: 28px 24px;
    transition: transform 0.2s, border-color 0.2s;
}

.ge-card:hover {
    border-color: #2f3138;
}

.ge-card-icon {
    margin-bottom: 15px;
}

.ge-card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.ge-card-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.ge-card-text {
    font-size: 0.95rem;
    line-height: 1.5;
}


.ge-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 30px 0 20px;
}

.ge-feature-item {
    background-color: #111215;
    border: 1px solid #1d1e21;
    border-radius: 5px;
    padding: 28px 22px;
    position: relative;
    transition: all 0.2s;
}

.ge-feature-icon {
    margin-bottom: 10px;
}

.ge-feature-icon img {
    width: 36px;
    height: 36px;
}

.ge-feature-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
}

.ge-feature-desc {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.ge-learn-link {
    text-align: right;
    display: block;
    font-size: 0.85rem;
    font-weight: 300;
    color: #91969a;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: opacity 0.2s;
}

.ge-learn-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}


.ge-two-columns {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.ge-col {
    flex: 1;
    min-width: 250px;
}

.ge-about-img img,
.ge-why-img img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.ge-list-check {
    list-style: none;
    margin: 24px 0;
}

.ge-list-check li {
    background: url('../images/check.png') left center no-repeat;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}


.ge-cta {
    text-align: center;
    padding: 65px 32px;
    position: relative;
    background: #111215 url('../images/pattern.png') center;
    background-size: 45px;
    border-radius: 5px;
    margin: 20px 0;
    border: 1px solid #1d1e21;
    overflow: hidden;
}

.ge-cta::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 250px;
    background: #ecf15e;
    filter: blur(150px);
    border-radius: 50%;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.ge-cta-content {
    position: relative;
    z-index: 2;
}

.ge-cta h2 {
    font-size: 2.5rem;
}

.ge-cta p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
}


.ge-footer {
    border-top: 1px solid #1d1e21;
    padding: 48px 32px 32px;
}

.ge-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.ge-footer-logo-col {
    max-width: 310px;
}

.ge-footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.ge-footer-logo img {
    height: 30px;
}

.ge-footer-desc {
    font-size: 0.85rem;
    line-height: 1.4;
}

.ge-footer-menu-col ul {
    list-style: none;
}

.ge-footer-menu-col li {
    margin-bottom: 12px;
}

.ge-footer-menu-col a {
    text-decoration: none;
    color: #91969a;
    transition: color 0.2s;
}

.ge-footer-menu-col a:hover {
    color: #ecf15e;
}

.ge-footer-contact p {
    margin-bottom: 8px;
}

.ge-footer-contact {
    max-width: 300px;
    width: 100%;
}

.ge-footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid #1d1e21;
    font-size: 0.8rem;
}

.ge-footer-legal {
    display: flex;
    gap: 24px;
}

.ge-footer-legal a {
    text-decoration: none;
    color: #91969a;
}

.ge-footer-legal a:hover {
    color: #ecf15e;
}

.ge-contact-page {
    max-width: 1200px;
    width: 90%;
    margin: 40px auto;
    background-color: #0e0f11;
    border: 1px solid #1d1e21;
    border-radius: 10px;
    padding: 48px 32px 64px;
}

.ge-contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.ge-contact-header h1 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 16px;
}

.ge-contact-header h1 span {
    color: #ecf15e;
}

.ge-contact-header p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

.ge-contacts-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 64px;
}

.ge-contact-card {
    flex: 1;
    min-width: 200px;
    background-color: #111215;
    border: 1px solid #1d1e21;
    border-radius: 5px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.ge-contact-card:hover {
    border-color: #ecf15e;
}

.ge-contact-card h3 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.ge-contact-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-word;
}

.ge-form-container {
    max-width: 780px;
    margin: 0 auto;
}

.ge-form-title {
    text-align: center;
    margin-bottom: 32px;
}

.ge-form-title h2 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 2rem;
    color: #fff;
}

.ge-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ge-full-width {
    grid-column: span 2;
}

.ge-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ge-input-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #b0b6bb;
}

.ge-input-group input,
.ge-input-group select,
.ge-input-group textarea {
    background-color: #111215;
    border: 1px solid #1d1e21;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    outline: none;
    transition: border 0.2s;
}

.ge-input-group input:focus,
.ge-input-group select:focus,
.ge-input-group textarea:focus {
    border-color: #ecf15e;
}

.ge-input-group textarea {
    resize: vertical;
    min-height: 110px;
}

.ge-btn-submit {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.25s ease;
    margin-top: 16px;
    width: auto;
}

.ge-btn-submit:hover {
    background-color: #ecf15e;
    transform: translateY(-2px);
}

.ge-form-footer {
    text-align: center;
    margin-top: 24px;
}

.ge-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.2s ease;
}

.ge-popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

.ge-popup-card {
    background-color: #111215;
    border: 1px solid #ecf15e;
    border-radius: 16px;
    padding: 32px 40px;
    text-align: center;
    max-width: 400px;
    width: 85%;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
}

.ge-popup-card h3 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    color: #ecf15e;
    margin-bottom: 16px;
}

.ge-popup-card p {
    font-size: 1rem;
    margin-bottom: 24px;
    color: #fff;
}

.ge-popup-close {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    font-weight: 300;
}

@media (max-width: 700px) {
    .ge-form-grid {
        grid-template-columns: 1fr;
    }

    .ge-full-width {
        grid-column: span 1;
    }

    .ge-contact-page {
        padding: 32px 20px;
    }
}


.ge-about-page {
    max-width: 1200px;
    width: 90%;
    margin: 40px auto;
    background-color: #0e0f11;
    border: 1px solid #1d1e21;
    border-radius: 10px;
    padding: 48px 32px 64px;
}

.ge-about-header {
    text-align: center;
    margin-bottom: 56px;
}

.ge-about-header h1 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 18px;
}

.ge-about-header h1 span {
    color: #ecf15e;
}

.ge-about-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.ge-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 70px;
}

.ge-feature-block {
    flex: 1;
    min-width: 240px;
    background-color: #111215;
    border: 1px solid #1d1e21;
    border-radius: 5px;
    padding: 32px 24px;
    transition: transform 0.2s, border-color 0.2s;
}

.ge-feature-block:hover {
    border-color: #ecf15e;
}




.ge-feature-block h3 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.ge-feature-block p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.ge-story-section {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.ge-story-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 20px;
}

.ge-story-section h2 span {
    color: #ecf15e;
}

.ge-story-intro {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 36px auto;
    color: #a8aeb3;
}

.ge-text-block {
    background-color: #111215;
    border: 1px solid #1d1e21;
    border-radius: 10px;
    padding: 36px 40px;
    text-align: left;
    margin-top: 16px;
}

.ge-text-block p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.ge-text-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ge-about-page {
        padding: 32px 20px;
    }

    .ge-text-block {
        padding: 24px 20px;
    }

    .ge-about-header h1 {
        font-size: 2.3rem;
    }
}

.ge-legal-wrapper {
    max-width: 1200px;
    width: 90%;
    margin: 40px auto;
    background-color: #0e0f11;
    border: 1px solid #1d1e21;
    border-radius: 10px;
    padding: 48px 40px 64px;
}

.ge-legal-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #1d1e21;
    padding-bottom: 28px;
}

.ge-legal-header h1 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 12px;
}

.ge-legal-header h1 span {
    color: #ecf15e;
}

.ge-legal-header .ge-last-updated {
    font-size: 0.85rem;
    color: #ecf15e;
    margin-top: 8px;
}

.ge-legal-content h2 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 1.7rem;
    color: #fff;
    margin: 32px 0 16px 0;
}

.ge-legal-content h3 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    color: #ecf15e;
    margin: 24px 0 12px 0;
}

.ge-legal-content p {
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.ge-legal-content ul,
.ge-legal-content ol {
    margin: 16px 0 20px 30px;
}

.ge-legal-content li {
    margin-bottom: 10px;
}

.ge-contact-block {
    background-color: #111215;
    border: 1px solid #1d1e21;
    border-radius: 8px;
    padding: 24px 28px;
    margin: 32px 0 20px;
}

.ge-contact-block p {
    margin: 8px 0;
}

.ge-contact-block strong {
    color: #fff;
    font-weight: 500;
}

hr {
    border-color: #1d1e21;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .ge-legal-wrapper {
        padding: 32px 20px;
    }

    .ge-legal-header h1 {
        font-size: 2rem;
    }
}


.ge-features-page {
    max-width: 1200px;
    width: 90%;
    margin: 40px auto;
    background-color: #0e0f11;
    border: 1px solid #1d1e21;
    border-radius: 10px;
    padding: 48px 32px 64px;
}

.ge-features-header {
    text-align: center;
    margin-bottom: 48px;
}

.ge-features-header h1 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 16px;
}

.ge-features-header h1 span {
    color: #ecf15e;
}

.ge-features-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.ge-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 20px;
}

.ge-capability-card {
    background-color: #111215;
    border: 1px solid #1d1e21;
    border-radius: 5px;
    padding: 32px 28px;
    transition: transform 0.2s, border-color 0.2s;
}

.ge-capability-card:hover {
    border-color: #ecf15e;
}

.ge-cap-icon {
    margin-bottom: 15px;
}

.ge-cap-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.ge-cap-title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 16px;
}

.ge-cap-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #b0b6bb;
}

.ge-cap-list {
    list-style: none;
    padding-left: 0;
}

.ge-cap-list li {
    background: url('../images/check.png') left center no-repeat;
    background-size: 18px;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 800px) {
    .ge-capabilities-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ge-features-page {
        padding: 32px 20px;
    }

    .ge-features-header h1 {
        font-size: 2.3rem;
    }
}



























@media (max-width: 900px) {

    .ge-grid-3,
    .ge-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ge-nav .ge-btn{
        display: none;
    }


}

@media (max-width: 768px) {
    .ge-wrapper {
        width: 95%;
        margin: 12px auto;
    }

    .ge-container {
        padding: 0 20px;
    }

    .ge-menu {
        display: none;
        flex-direction: column;
        gap: 14px;
        background: #111215;
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        padding: 24px;
        border-bottom: 1px solid #1d1e21;
        z-index: 100;
        width: 100%;
    }

    .ge-menu.active {
        display: flex;
    }

    .ge-mobile-toggle {
        display: block;
    }

    .ge-nav {
        justify-content: flex-end;
    }

    .ge-header {
        flex-wrap: wrap;
        position: relative;
    }

    .ge-banner h1 {
        font-size: 2.2rem;
    }

    .ge-grid-3,
    .ge-features-grid {
        grid-template-columns: 1fr;
    }

    .ge-two-columns {
        flex-direction: column;
    }

    .ge-footer-inner {
        flex-direction: column;
    }

    .ge-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

section {
    margin: 60px 0;
}

.ge-section-title-center {
    text-align: center;
}

.ge-mb-2 {
    margin-bottom: 2rem;
}

@media(max-width: 550px){
    .ge-footer-legal{
        justify-content: center;
        gap: 15px;
    }
    .ge-banner{
        margin-top: 0;
        padding: 40px 20px;
    }
}