.container-m {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: black;
    display: flex;
    width: 95%;
    height: 65vh;
    background-color: transparent;
    overflow: hidden;
    border-radius: 12px;
}

.color-container-m {
    font-family: 'Inter', sans-serif;
}

.left-m {
    color: black;
    width: 25%;
    background-color: #f3f4f6;
    border-right: 1px solid #e5e7eb;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.color-left-m {
    background: linear-gradient(to bottom, #edfdff, #d5f4ff);
    color: #1f1f1f;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: left;
}

.quote-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.quote-form input {
    background-color: white;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.web3-quote-form input {
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.color-quote-form input {
    background-color: #fff;
    color: #111;
    border: 2px solid #ffffff;
}

.color-quote-form input::placeholder {
    color: #6b7280;
}

.quote-form label {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #374151;
    display: flex;
    align-items: center;
}

.color-quote-form label {
    color: #7da8de;
}

.quote-form button {
    padding: 10px;
    background-color: #1f2937;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.web3-quote-form button {
    padding: 14px;
    border-radius: 25px;
    transition: transform 0.6s;
}

.web3-quote-form button:hover {
    transform: scale(1.1);
}

.color-quote-form button {
    background: linear-gradient(to right, #1647f9, #331cb9);
}

.right-m {
    width: 75%;
    padding: 0;
    overflow-y: auto;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.web3-right-m {
    backdrop-filter: blur(8px);
}

.color-right-m {
    color: white;
    background-image: linear-gradient(to bottom, #69c7ef 0%, #53a9ff 40%, #4976d1 80%, #232976 100%);
}

.navbar-m {
    background-color: #1f2937;
    color: white;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-m h1 {
    font-size: 1rem;
}

.web3-navbar-m {
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.color-navbar-m {
    background: #ffffff;
}

.color-navbar-m h1 {
    color:  #1f1f1f;
}

.main-content-m {
    padding: 30px;
}

section-m {
    margin-bottom: 50px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 25px;
    position: relative;
}

.web3-section-m {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}


.right-m section-m h2 {
    color: black;
    font-size: 1.5rem;
    border-left: 4px solid #1f2937;
    padding-left: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.color-right-m section-m h2 {
    color: #ffffff;
    border-left: 4px solid #ffffff;
}

.right-m p, .right-m ul, .right-m blockquote {
    color: #4b5563;
    line-height: 1.6;
}

.right-m ul {
    padding-left: 20px;
}

.color-right-m p, .color-right-m ul, .color-right-m blockquote {
    color: #ffffff;
}

.service-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service-box {
    background-color: #f3f4f6;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.web3-service-boxes .service-box {
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease;
}

.web3-service-boxes .service-box:hover {
    transform: translateY(-5px);
}

.color-service-boxes .service-box {
    background: rgba(255, 255, 255, 0.07);
}

.right-m blockquote {
    font-style: italic;
    background-color: #f3f4f6;
    padding: 10px 15px;
    border-left: 4px solid #9ca3af;
    margin: 10px 0;
    border-radius: 4px;
}

.color-right-m blockquote {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-left: 5px solid #ffffff;
    margin: 15px 0;
    border-radius: 6px;
}

.cert-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.cert-icons div::before {
    content: '✔';
    color: green;
    font-weight: bold;
    margin-right: 10px;
}

.color-cert-icons div::before {
    color: #ffffff;
}

@media (max-width: 900px) {
    .container-m {
        width: 100%;
    }
    .left-m {
        display: none;
    }

    .right-m {
        width: 100%;
    }
}