/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}


.superco-landing-page {
    background-color: #edf2f2;
    overflow-x: hidden;
    width: 100%;
    max-width: 1920px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Header Container */
.superco-landing-page .header-container {
    width: 100%;
    height: 100px;
    /* Adjust height as needed */
    background-color: #072a30;
    /* Dark background color from theme */
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0 40px;
}

/* Inner Frame for Header Content */
.superco-landing-page .frame {
    display: flex;
    width: 100%;
    max-width: 1800px;
    /* Constrain content width */
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.superco-landing-page .img {
    position: relative;
    width: 200px;
    /* Adjusted size for header */
    height: auto;
}

/* Navigation Menu */
.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex: 1;
    justify-content: center;
    /* Center the menu items */
}

.header-nav a {
    font-family: "Aeonik Pro", Helvetica;
    font-weight: 500;
    color: #edf2f2;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-nav a:hover {
    opacity: 0.8;
}

/* Button/Link Wrapper */
.superco-landing-page .div-wrapper {
    display: flex;
    height: 50px;
    /* Reduced height for header */
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    background-color: #ffffff;
    /* White button as seen in reference */
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.superco-landing-page .div-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    background-color: #f0f0f0;
}

.superco-landing-page .text-wrapper {
    font-family: "Aeonik Pro", Helvetica;
    font-weight: 600;
    color: #072a30;
    /* Dark text for button */
    font-size: 16px;
    line-height: normal;
}

/* ===== FLOWLINE STYLING ===== */
/* Hide original PNG doodles (LEFT.png, RIGHT.png) */
.superco-landing-page .frame-2,
.superco-landing-page .frame-3 {
    display: none !important;
}

/* Hero flowline image - displayed as-is */
.superco-landing-page .hero-flowline {
    position: absolute;
    top: 0;
    left: -190px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    pointer-events: none;
    z-index: 2;
}

/* Hide flowline on mobile */
@media (max-width: 768px) {
    .superco-landing-page .hero-flowline {
        display: none;
    }
}

/* Disable all pseudo-elements */
.superco-landing-page .div::before,
.superco-landing-page .div::after,
.superco-landing-page .frame-4::before,
.superco-landing-page .frame-4::after {
    display: none !important;
}

/* Hero Section Content */
.superco-landing-page .frame-4 {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 954px;
    align-items: center;
    gap: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.superco-landing-page .it-s-time-to-find {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "Aeonik Pro-Bold", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 120px;
    text-align: center;
    line-height: 120px;
}

.superco-landing-page .span {
    font-weight: 700;
    color: #edf2f2;
    letter-spacing: -2.88px;
    line-height: 116px;
}

.superco-landing-page .text-wrapper-2 {
    font-weight: 700;
    color: #17c64f;
    letter-spacing: 0;
    line-height: 0.1px;
}

/* CTA Button */
.superco-landing-page .frame-5 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    position: relative;
    flex: 0 0 auto;
    background-color: #b8c1c1;
    border-radius: 49px;
}

.superco-landing-page .p {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: "Aeonik Pro", Helvetica;
    font-weight: 700;
    color: #072a30;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0;
    line-height: 36px;
    white-space: nowrap;
}

/* Subtitle */
.superco-landing-page .it-s-designed-for {
    position: relative;
    width: 571.56px;
    font-family: "Aeonik Pro", Helvetica;
    font-weight: 300;
    color: #edf2f2;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0;
    line-height: 36px;
}

/* Group Element - Watermark */
/* Group Element - Watermark (Hide standalone image as we use bg) */
.superco-landing-page .group {
    display: none;
}

/* Connect Section Container */
.superco-landing-page .connect-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 100px 120px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    /* Use the image as background */
    background-image: url('superco-2nd section.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
}

/* Top Row: Title + Form side by side */
.superco-landing-page .connect-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

/* Title Container */
.superco-landing-page .connect-title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    gap: 60px;
    padding-top: 20px;
}

/* Heading */
.superco-landing-page .let-s-connect {
    font-family: "Aeonik Pro", Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 80px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.superco-landing-page .text-wrapper-3 {
    font-weight: 600;
    color: #000000;
    display: block;
}

.superco-landing-page .text-wrapper-4 {
    font-weight: 600;
    color: #17c64f;
}

/* Card Container - Form Wrapper */
.superco-landing-page .frame-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px;
    position: relative;
    flex: 1;
    max-width: 700px;
    min-width: 500px;
    background-color: #b8c1c1;
    /* Match the grey/greenish tone */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Contact Form */
.superco-landing-page .contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
}

.superco-landing-page .share-your-details {
    font-family: "Aeonik Pro", Helvetica;
    font-weight: 400;
    color: #072a30;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Form Row - for side by side fields */
.superco-landing-page .form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* Form Group */
.superco-landing-page .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.superco-landing-page .form-group.full-width {
    width: 100%;
}

/* Labels */
.superco-landing-page .form-group label {
    font-family: "Aeonik Pro", Helvetica;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.superco-landing-page .required {
    color: #e74c3c;
    margin-left: 2px;
}

/* Input Fields */
.superco-landing-page .form-group input,
.superco-landing-page .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #f5f5f5;
    /* Light grey/white */
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: "Aeonik Pro", Helvetica;
    font-size: 16px;
    color: #072a30;
    outline: none;
    transition: all 0.2s ease;
}

.superco-landing-page .form-group input:focus,
.superco-landing-page .form-group textarea:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(23, 198, 79, 0.5);
}

.superco-landing-page .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.superco-landing-page .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background-color: #072a30;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "Aeonik Pro", Helvetica;
    font-weight: 500;
    color: #17c64f;
    font-size: 16px;
    width: fit-content;
    margin-top: 10px;
}

.superco-landing-page .submit-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

/* Responsive Form */
@media (max-width: 900px) {
    .superco-landing-page .connect-section {
        padding: 60px 24px;
        margin-top: 0;
    }

    .superco-landing-page .connect-top {
        flex-direction: column;
        gap: 40px;
    }

    .superco-landing-page .connect-title {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 30px;
        width: 100%;
    }

    .superco-landing-page .frame-wrapper {
        min-width: auto;
        padding: 30px;
    }

    .superco-landing-page .form-row {
        flex-direction: column;
    }

    .superco-landing-page .let-s-connect {
        font-size: 48px;
        flex: 1 0 100%;
    }
}

/* Benefits Section - Bottom of Connect */
.superco-landing-page .connect-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 10px;
}

.superco-landing-page .benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.superco-landing-page .benefit-item img {
    width: 28px;
    height: 28px;
}

.superco-landing-page .benefit-item span {
    font-family: "Aeonik Pro", Helvetica;
    font-weight: 500;
    color: #072a30;
    font-size: 20px;
    line-height: 28px;
}

.superco-landing-page .frame-11 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.superco-landing-page .frame-12 {
    display: flex;
    align-items: flex-start;
    gap: 27px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

/* Form Fields - Columns */
.superco-landing-page .frame-13 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    width: 100%;
}

/* Form Labels */
.superco-landing-page .div-2 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "Aeonik Pro", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 24px;
}

.superco-landing-page .text-wrapper-6 {
    color: #000000;
}

.superco-landing-page .text-wrapper-7 {
    color: #fa0000;
}

/* Input Fields */
.superco-landing-page .rectangle-2 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 62px;
    background-color: #edf2f2;
    border-radius: 8px;
}

.superco-landing-page .text-wrapper-8 {
    color: #ff0000;
}

/* Form Labels - Right Column */
.superco-landing-page .text-wrapper-9 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "Aeonik Pro", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 24px;
}

/* Textarea Field */
.superco-landing-page .rectangle-3 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 150px;
    background-color: #edf2f2;
    border-radius: 8px;
}

/* Submit Button */
.superco-landing-page .frame-14 {
    display: inline-flex;
    height: 76px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 23px 50px;
    position: relative;
    background-color: #072a30;
    border-radius: 130px;
}

.superco-landing-page .text-wrapper-10 {
    position: relative;
    width: fit-content;
    margin-top: -0.5px;
    font-family: "Aeonik Pro", Helvetica;
    font-weight: 500;
    color: #17c64f;
    font-size: 24px;
    letter-spacing: 0;
    line-height: normal;
}

/* ========================================
   NEW FOOTER STYLES
   ======================================== */

.footer-section {
    background-color: #072a30;
    color: #edf2f2;
    padding: 80px 60px 40px;
    position: relative;
    overflow: hidden;
    font-family: "Aeonik Pro", Helvetica, sans-serif;
    margin-top: auto;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 0 0 auto;
}

.footer-brand .footer-logo {
    width: 300px;
    height: auto;
    display: block;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 150px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
}

.footer-column p,
.footer-column a {
    font-size: 16px;
    line-height: 1.6;
    color: #edf2f2;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(237, 242, 242, 0.1);
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.copyright p {
    font-size: 14px;
    opacity: 0.6;
}

.newsletter-section {
    max-width: 450px;
    width: 100%;
}

.newsletter-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-section p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #edf2f2;
    position: relative;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 12px 0;
    color: #fff;
    flex: 1;
    font-family: inherit;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(237, 242, 242, 0.5);
}

.newsletter-form button {
    background: #edf2f2;
    color: #072a30;
    border: none;
    padding: 8px 30px;
    border-radius: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #fff;
}

/* Watermark */
.footer-watermark {
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 250px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    user-select: none;
}

/* Responsive Styles for Footer */
@media (max-width: 1024px) {
    .footer-section {
        padding: 60px 40px 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 60px;
    }

    .footer-links {
        justify-content: flex-start;
        width: 100%;
        gap: 40px;
    }

    .footer-watermark {
        font-size: 150px;
        bottom: -10%;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 20px 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        /* Copyright last on mobile as normally expected, or first? */
        /* User request: "copyright will be coming in the last one" */
        /* If they mean visually at the very bottom, then flex-direction: column-reverse works if Newsletter is above it. */
        align-items: flex-start;
        gap: 40px;
    }

    .newsletter-section {
        max-width: 100%;
    }

    .footer-watermark {
        font-size: 80px;
        bottom: 0;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet Landscape & Small Desktop (max-width: 1024px) */
@media screen and (max-width: 1024px) {

    /* Header */
    .superco-landing-page .frame {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        top: 20px;
    }

    .superco-landing-page .img {
        width: 200px;
        height: auto;
    }

    .superco-landing-page .div-wrapper {
        width: 180px;
        height: 56px;
        padding: 16px 30px;
    }

    .superco-landing-page .text-wrapper {
        font-size: 18px;
    }

    /* Hero Section */
    .superco-landing-page .div {
        margin: 100px 16px 0 16px;
        height: 500px;
    }

    .superco-landing-page .rectangle {
        height: 100px;
    }

    /* Doodles - maintain Figma design proportions */
    .superco-landing-page .frame-2 {
        width: 90%;
        left: -5%;
        top: 0;
    }

    .superco-landing-page .frame-3 {
        width: 90%;
        right: 0;
        left: auto;
        top: 0;
    }

    .superco-landing-page .it-s-time-to-find {
        font-size: 70px;
        line-height: 70px;
    }

    .superco-landing-page .span {
        letter-spacing: -1.5px;
        line-height: 68px;
    }

    .superco-landing-page .p {
        font-size: 18px;
        line-height: 28px;
    }

    .superco-landing-page .it-s-designed-for {
        width: 100%;
        max-width: 450px;
        font-size: 18px;
        line-height: 28px;
    }

    /* Watermark */
    .superco-landing-page .group {
        margin-top: -50px;
    }

    /* Connect Section */
    .superco-landing-page .connect-section {
        padding: 0 40px 60px 40px;
        margin-top: -150px;
    }

    .superco-landing-page .connect-top {
        gap: 40px;
    }

    .superco-landing-page .let-s-connect {
        font-size: 50px;
        line-height: 50px;
    }

    .superco-landing-page .frame-wrapper {
        min-width: 400px;
        padding: 35px 40px;
    }

    .superco-landing-page .share-your-details {
        font-size: 20px;
        line-height: 28px;
    }

    .superco-landing-page .benefit-item span {
        font-size: 16px;
    }
}

/* Tablet Portrait (max-width: 768px) */
@media screen and (max-width: 768px) {

    /* Header */
    .superco-landing-page .frame {
        width: calc(100% - 32px);
        left: 16px;
        right: 16px;
        top: 16px;
    }

    .superco-landing-page .img {
        width: 150px;
    }

    .superco-landing-page .div-wrapper {
        width: 140px;
        height: 48px;
        padding: 12px 20px;
    }

    .superco-landing-page .text-wrapper {
        font-size: 14px;
    }

    /* Hero Section */
    .superco-landing-page .div {
        margin: 80px 12px 0 12px;
        height: 450px;
        border-radius: 16px;
    }

    .superco-landing-page .rectangle {
        height: 80px;
    }

    /* Doodles are hidden on mobile - see earlier hide rule */

    .superco-landing-page .frame-4 {
        width: 95%;
        gap: 16px;
    }

    .superco-landing-page .it-s-time-to-find {
        font-size: 48px;
        line-height: 48px;
    }

    .superco-landing-page .span {
        letter-spacing: -1px;
        line-height: 46px;
    }

    .superco-landing-page .frame-5 {
        padding: 10px 24px;
    }

    .superco-landing-page .p {
        font-size: 16px;
        line-height: 24px;
    }

    .superco-landing-page .it-s-designed-for {
        font-size: 16px;
        line-height: 24px;
        max-width: 350px;
    }

    /* Doodles are hidden on mobile - see earlier hide rule */

    /* Watermark */
    .superco-landing-page .group {
        margin-top: -30px;
    }

    /* Connect Section */
    .superco-landing-page .connect-section {
        padding: 0 20px 50px 20px;
        margin-top: -100px;
    }

    .superco-landing-page .connect-top {
        flex-direction: column;
        gap: 30px;
    }

    .superco-landing-page .connect-title {
        align-items: center;
        text-align: center;
    }

    .superco-landing-page .let-s-connect {
        font-size: 40px;
        line-height: 44px;
        text-align: center;
    }

    .superco-landing-page .connect-benefits {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding-left: 0;
    }

    .superco-landing-page .benefit-item {
        gap: 8px;
    }

    .superco-landing-page .benefit-item img {
        width: 20px;
        height: 20px;
    }

    .superco-landing-page .benefit-item span {
        font-size: 14px;
        line-height: 20px;
    }

    .superco-landing-page .frame-wrapper {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 30px 25px;
    }

    .superco-landing-page .share-your-details {
        font-size: 18px;
        line-height: 26px;
    }

    .superco-landing-page .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .superco-landing-page .form-group label {
        font-size: 13px;
    }

    .superco-landing-page .form-group input,
    .superco-landing-page .form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
    }

    .superco-landing-page .submit-btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {

    /* Header */
    .superco-landing-page .frame {
        width: calc(100% - 24px);
        left: 12px;
        right: 12px;
        top: 12px;
    }

    .superco-landing-page .img {
        width: 120px;
    }

    .superco-landing-page .div-wrapper {
        width: 110px;
        height: 40px;
        padding: 10px 16px;
    }

    .superco-landing-page .text-wrapper {
        font-size: 12px;
    }

    /* Hero Section */
    .superco-landing-page .div {
        margin: 70px 10px 0 10px;
        height: 380px;
        border-radius: 12px;
    }

    .superco-landing-page .rectangle {
        height: 70px;
    }

    .superco-landing-page .frame-4 {
        gap: 12px;
    }

    .superco-landing-page .it-s-time-to-find {
        font-size: 36px;
        line-height: 38px;
    }

    .superco-landing-page .span {
        letter-spacing: -0.5px;
        line-height: 36px;
    }

    .superco-landing-page .text-wrapper-2 {
        line-height: 38px;
    }

    .superco-landing-page .frame-5 {
        padding: 8px 20px;
    }

    .superco-landing-page .p {
        font-size: 14px;
        line-height: 20px;
    }

    .superco-landing-page .it-s-designed-for {
        font-size: 14px;
        line-height: 20px;
        max-width: 280px;
    }

    /* Decorative curves - Show only right doodle on Mobile, extending into header */
    .superco-landing-page .frame-2 {
        display: none;
    }

    .superco-landing-page .frame-3 {
        display: block;
        top: -40px;
        height: calc(100% + 40px);
        max-width: 55%;
        opacity: 0.5;
        right: -8%;
    }

    /* Watermark */
    .superco-landing-page .group {
        margin-top: -20px;
    }

    /* Connect Section */
    .superco-landing-page .connect-section {
        padding: 0 16px 40px 16px;
        margin-top: -60px;
    }

    .superco-landing-page .connect-top {
        gap: 24px;
    }

    .superco-landing-page .let-s-connect {
        font-size: 32px;
        line-height: 36px;
    }

    .superco-landing-page .connect-benefits {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .superco-landing-page .benefit-item span {
        font-size: 13px;
    }

    .superco-landing-page .frame-wrapper {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .superco-landing-page .share-your-details {
        font-size: 16px;
        line-height: 24px;
    }

    .superco-landing-page .contact-form {
        gap: 16px;
    }

    .superco-landing-page .form-group input,
    .superco-landing-page .form-group textarea {
        padding: 12px;
        font-size: 14px;
        border-radius: 6px;
    }

    .superco-landing-page .submit-btn {
        padding: 12px 24px;
        font-size: 15px;
        border-radius: 100px;
    }


}