body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: #ffffff;
    color: #1b1b1b;
}

.wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    background: #1f1f1f;
    background-repeat: no-repeat;
    background-size: cover;
}

.logo {
    height: 50px;
}

.logo-big {
    height: 100px;
}

.gov-support {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.gov-support img {
    width: 24px;
    margin-right: 8px;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: url('../images/bg1.png?v=2') no-repeat center center;
    background-size: cover;
    padding: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
    z-index: -2;
}

.left-content {
    color: white;
    max-width: 50%;
}

.left-content h1 {
    font-size: 64px;
    margin-bottom: 10px;
}

.left-content p {
    font-size: 32px;
    line-height: 1.6;
    margin-bottom: 0;
}

.left-content .highlight {
    font-size: 64px;
    color: #72CA2F;
    font-weight: 700;
    margin-top: 0;
}

.form-box-outer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    background: #1e1e1e
}

.right-form {
    position: relative;
    z-index: 2;
    background: linear-gradient(#000000 0%, #0000004D 60%, #2f3e23 100%);
    padding: 30px;
    border-radius: 15px;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-box h2 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

form input[type="text"],
form input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #79CD39;
    font-size: 14px;
    color: white;
    background: black;
}

::placeholder {
    color: white;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #79CD39;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.phone-input img {
    width: 24px;
    margin: 0 8px;
}

.phone-input span {
    font-size: 14px;
    margin-right: 8px;
}

.phone-input input {
    border: none;
    flex: 1;
    padding: 10px;
    font-size: 14px;
}

form button {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    background-color: #79CD39;
    color: white;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    main {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .left-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .right-form {
        margin-top: -55px;
        max-width: 90%;
    }

    header {
        align-items: flex-end;
        gap: 10px;
    }

    .logo {
        height: 30px;
    }

    .logo-big {
        height: 40px;
    }

    .left-content h1 {
        font-size: 28px;
    }

    .left-content p {
        font-size: 19px;
        font-weight: 700;
        margin-top: 0;
    }

    .left-content .highlight {
        font-size: 28px;
        border: none;
    }

    main::before {
        content: "";
        display: inline-block;
        position: absolute;
        bottom: 0;
        z-index: 0;
        left: 0;
        height: 0;
        width: 100%;
        background-color: #fafcff;
    }
}

.quote-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    padding: 40px 20px;
    font-family: Inter, sans-serif;
    flex-wrap: wrap;
    padding-top: 120px;
    background: #1f1f1f;
    background-size: cover;
    background-repeat: no-repeat;
}

.quote-box {
    display: flex;
    max-width: 600px;
    border: 2px solid #72CA2F;
    border-radius: 12px;
    padding: 30px 25px;
    position: relative;
    background-color: #383838;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    gap: 10px;
}

.quote-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #72CA2F;
}

.quote-box p {
    font-size: 20px;
    line-height: 1.6;
    margin: 10px 0;
    font-style: italic;
    color: white;
}

.quote-box .signature {
    margin-top: 20px;
    font-size: 20px;
    color: white;
}

.quote-photo {
    flex-shrink: 0;
    overflow: hidden;
    width: 180px;
    margin-left: -40px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.quote-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desktop-hidden {
    display: none;
}

.mobile-hidden {
    display: block;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .quote-section {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        padding-top: 40px;
    }

    .quote-photo {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 12px;
        margin: 0;
    }

    .quote-box::before {
        top: 15px;
        left: 15px;
        font-size: 40px;
    }

    .quote-box {
        padding: 25px 20px;
        margin-top: 25px;
    }

    .desktop-hidden {
        display: block;
    }

    .mobile-hidden {
        display: none;
    }


    .quote-box h3 {
        font-size: 16px;
    }

    .quote-box p {
        font-size: 12px;
    }

    .quote-box .signature {
        font-size: 11px;
    }
}

.registration-section {
    background: #1f201f;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Inter, sans-serif;
}

.registration-form {
    background: linear-gradient(#1f1f1f 0%, #23271f 80%, #2f3e23 100%);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.registration-form h2 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.5;
    color: white;
}

.registration-form input[type="text"],
.registration-form input[type="tel"] {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.registration-form .phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

.registration-form .phone-input img {
    width: 24px;
    margin: 0 8px;
}

.registration-form .phone-input span {
    font-size: 14px;
    margin-right: 8px;
    white-space: nowrap;
}

.registration-form .phone-input input {
    border: none;
    flex: 1;
    padding: 12px;
    font-size: 14px;
}


/* Mobile Styles */
@media (max-width: 600px) {
    .registration-section {
    }

    .registration-form {
        padding: 25px 20px;
    }

    .registration-form button {
        font-size: 15px;
    }
}

.footer-section {
    font-family: Inter, sans-serif;
    text-align: center;
    background-color: #1f201f;
    color: #A9A9A9;
}

.footer-section p {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 10px;
    max-width: 90%;
    margin: 0 auto;
}

/* Bottom blue strip */
.footer-bottom {
    background-color: #79CD39;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 20px;
    margin-top: 30px;
}

.footer-bottom img {
    height: 60px;
    width: auto;
    cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .footer-section p {
        font-size: 13px;
    }

    .footer-bottom {
        gap: 12px;
    }

    .footer-bottom img {
        max-height: 30px;
    }
}

.quantum-invest-section {
    background: #0e0e0e;
    display: flex;
    justify-content: center;
    text-align: center;
}

.quantum-invest-content {
    position: relative;
    max-width: 400px;
}

.quantum-invest-content h2 {
    margin: 0 auto;
    max-width: 320px;
    font-size: 19px;
    font-weight: 700;
    color: #00ff5f;
    margin-top: 15px;
    margin-bottom: 0;
}

.quantum-invest-content h2 span {
    color: #00ff5f;
}

.quantum-invest-content p {
    margin: 0 auto;
    max-width: 320px;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 300;
}

.quantum-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: -90px;
}

.why-quantum-section {
    background: url('../images/bg3.png') no-repeat center/cover;
    background-color: #1e1e1e;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    font-family: Inter, sans-serif;
}

.why-quantum-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #00ff4e;
}

.why-quantum-section h2 span {
    color: #00ff4e;
}

.why-quantum-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-quantum-list li {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.why-quantum-list img {
    width: 100px;
    flex-shrink: 0;
}

.why-quantum-list h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    text-align: right;
}

.why-quantum-list p {
    font-size: 16px;
    font-weight: 500;
    color: #e0e0e0;
    margin: 0;
    text-align: center;
}

.testimonials-section {
    background: url('../images/bg4.png') no-repeat center/cover;
    background-color: #1e1e1e;
    padding: 20px;
    text-align: center;
    font-family: Inter, sans-serif;
}

.testimonials-section h2 {
    color: #00ff4e;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 50px;
    margin: 15px auto;
    max-width: 600px;
    color: #fff;
    text-align: left;
}

.testimonial img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.testimonial .text {
    flex: 1;
    font-size: 11px;
    font-weight: 700;
}

.testimonial .name {
    color: #00ff4e;
    font-weight: 700;
}

