 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            width: 100%;
            background-color: #0f0f0f;
            font-family: "Inter", sans-serif;
            color: aliceblue;
            scroll-behavior: smooth;
        }

        #main {
            width: 100%;
            overflow-x: hidden;
        }

        /* ===== NAVBAR ===== */
        .weblogo {
            padding: 3vw;
            width: 100%;
            min-height: 100vh;
            background-image: url(https://yearn.fi/landing/hero-background-mobile.png);
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: rgb(0, 0, 0);
            gap: 3vh;
            position: relative;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            z-index: 10;
        }

        .logo img {
            width: 35px;
            height: auto;
        }

        .menubtn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgb(80, 79, 79);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 100;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background-color: #1a1a1a;
            z-index: 90;
            padding: 80px 20px 20px;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-menu.show {
            right: 0;
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            padding: 10px 0;
            border-bottom: 1px solid #333;
        }

        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .logoImg {
            z-index: 0;
            width: 40%;
            max-width: 300px;
            height: auto;
            margin: 20px 0;
        }

        .logoImg img {
            width: 100%;
            height: auto;
        }

        .heading {
            color: aliceblue;
            text-align: center;
            line-height: 1.4;
            margin: 20px 0;
        }

        .heading h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .heading p {
            font-size: 1.2rem;
            color: #aaa;
        }

        .explorBtn {
            width: 80%;
            max-width: 250px;
            height: auto;
            border-radius: 25px;
            overflow: hidden;
            margin: 20px 0;
        }

        .explorBtn button {
            background-color: rgb(10, 88, 255);
            color: aliceblue;
            border: none;
            padding: 15px 0;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .explorBtn button:hover {
            background-color: rgb(0, 70, 200);
        }

        /* ===== VAULTS APP ===== */
        .vaultsApp {
            text-align: center;
            padding: 60px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .divhead {
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
        }

        .divhead h1 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .divhead p {
            color: rgb(171, 171, 171);
            font-size: 1.1rem;
            line-height: 1.5;
        }

        .vaultCard {
            width: 100%;
            max-width: 1000px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .vCard {
            width: 100%;
            height: auto;
            display: flex;
            border-radius: 10px;
            overflow: hidden;
            align-items: center;
            padding: 20px;
            position: relative;
            background: linear-gradient(to right, rgb(0, 0, 0), rgb(29, 29, 29), rgb(51, 51, 51));
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .vCard:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .vCard-img {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .vCard-img img {
            width: 100%;
            height: auto;
        }

        .vCard h3 {
            font-size: 1.2rem;
            margin-right: auto;
        }

        .v-arrow {
            position: absolute;
            right: 20px;
        }

        .bg-color1 {
            background: linear-gradient(to right, rgb(29, 29, 29), rgb(52, 52, 52), rgb(82, 82, 82));
        }

        /* ===== SECURITY FIRST ===== */
        .securityFirst {
            background-color: rgb(28, 28, 28);
            text-align: center;
            padding: 60px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .securitymain {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 100%;
            max-width: 1000px;
            gap: 20px;
        }

        .audits, .bug {
            border-radius: 15px;
            padding: 40px 30px;
            text-align: left;
            transition: transform 0.3s;
        }

        .audits:hover, .bug:hover {
            transform: translateY(-5px);
        }

        .audits {
            background-color: rgb(124, 66, 248);
        }

        .bug {
            background-color: rgb(63, 114, 255);
        }

        .audits h1, .bug h1 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .audits p, .bug p {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .audits h5, .bug h5 {
            font-size: 1rem;
            cursor: pointer;
            display: inline-block;
        }

        /* ===== YEARN X ===== */
        .yearnX {
            padding: 60px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .yearnXdivs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            width: 100%;
            max-width: 1000px;
        }

        .innerDivs {
            width: 100%;
            height: 120px;
            background-color: rgb(44, 44, 44);
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s;
        }

        .innerDivs:hover {
            background-color: rgb(60, 60, 60);
        }

        .innerDivs img {
            width: 60%;
            height: auto;
            max-height: 70px;
            object-fit: contain;
        }

        /* ===== INTEGRATIONS ===== */
        .integ {
            background-color: rgb(25, 23, 23);
            padding: 60px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .integdivs {
            width: 100%;
            max-width: 1000px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .dinsinner {
            height: 70px;
            width: 100%;
            display: flex;
            align-items: center;
            padding: 0 20px;
            gap: 20px;
            transition: background-color 0.3s;
        }

        .dinsinner:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .incolor {
            background-color: rgb(47, 47, 47);
        }

        .div1 {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .div1 img {
            width: 100%;
            height: auto;
        }

        .dinsinner h3 {
            font-size: 1.1rem;
            margin-right: auto;
        }

        .div2 {
            margin-left: auto;
        }

        /* ===== FAQ ===== */
        .faq-container {
            width: 100%;
            padding: 60px 20px;
            text-align: left;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-container h2 {
            text-align: center;
            margin-bottom: 10px;
            font-size: 2.2rem;
        }

        .subtitle {
            text-align: center;
            font-size: 1rem;
            color: #a0a0a0;
            margin-bottom: 40px;
        }

        .faq {
            margin-bottom: 10px;
            border-bottom: 1px solid #333;
        }

        .faq-question {
            background: #1c1c1c;
            border: none;
            color: #fff;
            width: 100%;
            text-align: left;
            padding: 20px 0;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: #2a2a2a;
        }

        .faq-question span {
            font-size: 1.5rem;
            font-weight: 300;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            background: #1c1c1c;
            padding: 0;
            font-size: 1rem;
            color: #bcbcbc;
            line-height: 1.5;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-question.active + .faq-answer {
            max-height: 200px;
            padding: 0 0 20px;
        }

        .links {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .links a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
        }

        .links a:hover {
            color: #0a58ff;
        }

        .socials {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .icon {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1c1c1c;
            text-decoration: none;
            color: #fff;
            font-size: 18px;
            transition: background 0.2s;
        }

        .icon:hover {
            background: #333;
        }

        /* ===== DESKTOP STYLES ===== */
        @media (min-width: 768px) {
            .weblogo {
                padding: 2rem 4rem;
                min-height: 100vh;
                background-image: url(https://yearn.fi/landing/hero-background-mobile.png);
                display: flex;
                background-size: cover;
                flex-direction: column;
                justify-content: space-between;
                align-items: center;
                text-align: left;
            }

            .navbar {
                padding: 0;
            }

            .logo img {
                width: 50px;
            }

            .menubtn {
                display: none;
            }

            .mobile-menu {
                position: static;
                width: auto;
                height: auto;
                background: none;
                flex-direction: row;
                padding: 0;
                gap: 2rem;
            }

            .mobile-menu a {
                border: none;
                font-size: 1rem;
                padding: 0;
            }

            .close-menu {
                display: none;
            }

            .logoImg {
                width: 30%;
                max-width: 400px;
                order: 2;
            }

            .heading {
                text-align: center;
                width: 50%;
                order: 1;
            }

            .heading h1 {
                font-size: 3.5rem;
            }

            .heading p {
                font-size: 1.5rem;
            }

            .explorBtn {
                order: 3;
                width: 200px;
                /* margin-top: auto; */
                margin-bottom: 100px;
            }

            .vaultCard {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
            }

            .vCard {
                width: 48%;
                margin-bottom: 20px;
            }

            .securitymain {
                flex-direction: row;
            }

            .audits, .bug {
                width: 48%;
                padding: 50px 40px;
            }

            .yearnXdivs {
                grid-template-columns: repeat(3, 1fr);
            }

            .innerDivs {
                height: 150px;
            }

            .integdivs {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                
            }

            .dinsinner {
                border-radius: 10px;
                height: 80px;
                background-color: rgb(31, 31, 31);
            }
            .faq-question{
                padding-left: 20px;
                padding-right: 20px;
            }
            .faq-container {
                padding: 80px 20px;
            }

            .links {
                flex-direction: row;
                justify-content: center;
                gap: 30px;
            }
        }

        @media (min-width: 1200px) {
            .weblogo, .vaultsApp, .securityFirst, .yearnX, .integ, .faq-container {
                padding-left: 5%;
                padding-right: 5%;
            }
            
            .vCard {
                width: 23%;
            }
            
            .yearnXdivs {
                grid-template-columns: repeat(6, 1fr);
            }
        }