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

:root {
    --dark-blue: #0a2540;
    --bright-blue: #007bff;
    --white: #FFFFFF;
    --dark-grey: #333333;
    --light-grey: #f8f9fa;
    --border-color: #e0e0e0;
    --page-bg: #202020;
}

html {
    scroll-behavior: smooth;
    background-color: #202020;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-grey);
    line-height: 1.6;
    background-color: var(--page-bg);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background-color: #202020;
    z-index: 999;
    pointer-events: none;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #000000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    position: sticky;
    top: 15px;
    z-index: 1000;
    width: 90%;
    margin: 15px auto 0 auto;
    border-radius: 50px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    padding-left: 12px;
    padding-right: 12px;
    max-width: none;
    margin: 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.menu-toggle {
    background-color: #1f1f1f;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.menu-toggle:hover {
    background-color: #292929;
    transform: scale(1.05);
}

.menu-toggle .dot {
    width: 5px;
    height: 5px;
    background-color: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.menu-toggle.active .dot:nth-child(1) {
    transform: translateY(2px);
}

.menu-toggle.active .dot:nth-child(3) {
    transform: translateY(-2px);
}

.menu-overlay {
    position: fixed;
    top: -500px;
    right: 5%;
    width: 240px;
    background-color: #292929;
    z-index: 998;
    transition: top 0.4s ease, opacity 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    opacity: 0;
}

.menu-overlay.active {
    top: 100px;
    opacity: 1;
}

.menu-content {
    padding: 30px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 12px;
}

.menu-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.menu-list a:hover {
    color: #7ed321;
    border-bottom-color: #7ed321;
}

.menu-list a.indent {
    padding-left: 20px;
    position: relative;
}

.menu-list a.indent::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--white);
    font-size: 1.2rem;
}

.logo {
    height: 30px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.1;
}

.logo-line {
    color: var(--white);
    font-size: 0.81rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

header h1 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    font-weight: 700;
}

#hero {
    background: var(--page-bg);
    min-height: 375px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 40px 20px 30px 20px;
}

.hero-logo {
    height: 80px;
    width: auto;
    margin: 0 auto 20px;
    display: block;
}

.hero-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #555555;
    padding-bottom: 8px;
    display: inline-block;
}

.hero-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

#services {
    padding: 23px 0 30px 0;
    background-color: var(--page-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.cta-card {
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 24px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.08);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--white);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.cta-card:hover::before {
    background: rgba(0, 0, 0, 0.8);
}

.cta-card h3 {
    position: relative;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    z-index: 1;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-ai {
    background-image: url('images/ai_image.jpg');
}

.cta-b2b {
    background-image: url('images/b2b_bg.jpg');
}

.cta-brands {
    background-image: url('images/brands_bg.avif');
    background-position: right center;
}

#ai-section {
    padding: 54px 0 27px 0;
    background-color: var(--page-bg);
    text-align: center;
    scroll-margin-top: 80px;
}

#ai-section .ai-bento-box {
    background-color: #292929 !important;
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 990px;
    margin: 0 auto;
}

#ai-section .ai-bento-box * {
    background: none !important;
    background-color: transparent !important;
}

#ai-section .ai-search-box {
    background-color: var(--white) !important;
}

#ai-section .btn-request {
    background-color: #7ed321 !important;
}

.ai-section-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: none;
    background-color: transparent;
    border-bottom: 2px solid #555555;
    padding-bottom: 8px;
    display: inline-block;
}

.ai-description {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.6;
    background: none;
}

.ai-portal-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
    background: none;
}

.ai-search-box {
    width: fit-content;
    max-width: 90%;
    margin: 0 auto 30px;
    background-color: var(--white);
    border-radius: 30px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.ai-search-icon {
    height: 30px;
    width: auto;
    flex-shrink: 0;
}

.ai-search-box input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    width: 330px;
    color: var(--dark-grey);
}

.ai-search-box input::placeholder {
    color: #666;
    font-style: italic;
}

.ai-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-request {
    background-color: #7ed321;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-request:hover {
    background-color: #6bb81d;
}

.btn-soon {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    opacity: 0.8;
}

#b2b-section {
    padding: 27px 0 54px 0;
    background-color: var(--page-bg);
    text-align: center;
    scroll-margin-top: 80px;
}

#b2b-section .b2b-bento-box {
    background-color: #292929 !important;
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 990px;
    margin: 0 auto;
}

.b2b-section-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: 2px solid #555555;
    padding-bottom: 8px;
    display: inline-block;
}

.b2b-description {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-contact {
    background-color: #7ed321;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn-contact:hover {
    background-color: #6bb81d;
}

#brands {
    padding: 54px 0;
    background-color: var(--page-bg);
    text-align: center;
    scroll-margin-top: 80px;
}

.brand-bento-box {
    background-color: #292929 !important;
    border-radius: 24px;
    padding: 34px;
    max-width: 990px;
    margin: 0 auto 27px auto;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand-col-a {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    max-width: 150px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.brand-logo-pmr {
    max-width: 112.5px;
    height: auto;
}

.brand-col-b {
    flex: 1;
    text-align: left;
}

.brand-col-b h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.brand-name-text {
    border-bottom: 2px solid #555555;
    padding-bottom: 8px;
    display: inline-block;
}

.brand-external-link {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.brand-external-link:hover {
    opacity: 0.7;
}

.brand-col-b p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    margin: 0;
    text-align: justify;
}

#privacy-hero {
    background: var(--page-bg);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

#privacy-content {
    padding: 27px 0 54px 0;
    background-color: var(--page-bg);
}

.privacy-bento-box {
    background-color: #292929 !important;
    border-radius: 24px;
    padding: 34px;
    max-width: 990px;
    margin: 0 auto 27px auto;
}

.privacy-bento-box h2 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #555555;
    padding-bottom: 8px;
}

.privacy-bento-box p {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: justify;
}

.privacy-bento-box ul {
    color: var(--white);
    margin: 12px 0;
    padding-left: 30px;
}

.privacy-bento-box li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: justify;
}

.privacy-bento-box a {
    color: var(--white);
    text-decoration: underline;
}

.privacy-bento-box a:hover {
    color: #e0e0e0;
}

.privacy-bento-box strong {
    font-weight: 600;
}

footer {
    background-color: #000000;
    color: #999999;
    padding: 15px 0;
    text-align: left;
    width: 90%;
    margin: 0 auto 15px auto;
    border-radius: 50px;
}

footer .container {
    max-width: none;
    margin: 0;
    padding: 5px 25px;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-separator {
    color: #666666;
}

@media (max-width: 768px) {
    .logo-line {
        font-size: 1.3rem;
    }
    
    .logo {
        height: 45px;
    }
    
    .hero-text {
        font-size: 1.8rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
    }
    
    .brand-bento-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-line {
        font-size: 0.648rem;
    }
    
    .logo {
        height: 24px;
    }
    
    .hero-logo {
        height: 64px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 0.96rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .cta-card {
        height: 128px;
    }
    
    .cta-card h3 {
        font-size: 1.44rem;
    }
    
    .card-content {
        padding: 16px;
    }
    
    .ai-section-title {
        font-size: 1.6rem;
    }
    
    .ai-description {
        font-size: 0.88rem;
    }
    
    .ai-portal-text {
        font-size: 0.88rem;
    }
    
    .ai-search-box {
        padding: 12px 16px;
    }
    
    .ai-search-icon {
        height: 24px;
    }
    
    .ai-search-box input {
        font-size: 0.8rem;
    }
    
    .btn-request {
        font-size: 0.88rem;
        padding: 12px 28px;
    }
    
    .btn-contact {
        font-size: 0.88rem;
        padding: 12px 28px;
    }
    
    .btn-soon {
        font-size: 0.88rem;
        padding: 12px 28px;
    }
    
    .b2b-section-title {
        font-size: 1.6rem;
    }
    
    .b2b-description {
        font-size: 0.88rem;
    }
    
    .brand-bento-box h3 {
        font-size: 1.44rem;
    }
    
    .brand-logo {
        max-width: 120px;
        width: 100%;
        height: auto;
    }
    
    .brand-logo-pmr {
        max-width: 95px;
        width: 100%;
        height: auto;
    }
    
    .brand-col-b p {
        font-size: 0.8rem;
    }
    
    #ai-section {
        padding: 20px 0 15px 0;
    }
    
    #ai-section .ai-bento-box {
        padding: 25px 20px 25px 20px;
    }
    
    .ai-section-title {
        margin-top: 0;
        margin-bottom: 15px;
    }
    
    #b2b-section {
        padding: 15px 0 20px 0;
    }
    
    #b2b-section .b2b-bento-box {
        padding: 25px 20px 25px 20px;
    }
    
    .b2b-section-title {
        margin-top: 0;
        margin-bottom: 15px;
    }
    
    #brands {
        padding: 20px 0;
    }
    
    .brand-bento-box {
        padding: 10px 20px 10px 20px;
        margin: 0 auto 15px auto;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .brand-col-a {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -6px;
        margin-bottom: -6px;
    }
    
    .brand-col-b {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }
    
    .brand-col-b h3 {
        margin-top: 0;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    
    .brand-col-b h3:has(.brand-external-link)::before {
        content: '';
        flex: 0 0 26px;
    }
    
    .brand-col-b .brand-external-link {
        flex: 0 0 26px;
        display: flex;
    }
    
    .brand-col-b .brand-name-text {
        white-space: nowrap;
    }
    
    .brand-col-b p {
        align-self: stretch;
        margin-top: 0;
        text-align: justify;
    }
    
    #privacy-content {
        padding: 15px 0 20px 0;
    }
    
    .privacy-bento-box {
        padding: 8px 20px 20px 20px;
        margin: 0 auto 15px auto;
    }
    
    .privacy-bento-box h2 {
        margin-top: 0;
    }
    
    .privacy-bento-box p {
        text-align: justify;
        text-align-last: left;
        hyphens: auto;
    }
    
    footer .footer-content {
        justify-content: center;
        text-align: center;
    }
    
    footer .footer-links {
        display: none;
    }
    
    footer p {
        font-size: 0.72rem;
    }
}

/* Login Page Styles */
#login-section {
    background-color: var(--page-bg);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 20px 60px 20px;
}

.login-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.login-box {
    background-color: #292929;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
}

.login-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.login-logo {
    height: 62.5px;
    width: auto;
}

.login-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
    text-align: left;
}

.login-logo-line {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.1;
    text-align: left;
}

.login-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.login-subtitle {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 35px;
    font-weight: 400;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.form-group {
    text-align: left;
    width: 100%;
}

.form-group label {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: var(--white);
    color: #333;
    font-family: 'Open Sans', sans-serif;
}

.form-group input::placeholder {
    color: #999;
    opacity: 1;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(126, 211, 33, 0.2);
}

.btn-login {
    width: auto;
    min-width: 180px;
    padding: 14px 50px;
    background-color: #7ed321;
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
}

.btn-login:hover {
    background-color: #6bb81d;
    transform: translateY(-2px);
}

.btn-login:active {
    transform: translateY(0);
}

/* Mobile Warning Overlay - Partner Login Page */
.mobile-warning-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.mobile-warning-content {
    position: relative;
    background-color: #292929;
    border-radius: 24px;
    padding: 40px 30px 30px 30px;
    max-width: 90%;
    width: 400px;
    text-align: center;
}

.mobile-warning-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.mobile-warning-close:hover {
    opacity: 0.7;
}

.mobile-warning-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.mobile-warning-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 30px;
}

.mobile-warning-ok {
    background-color: #7ed321;
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 14px 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.mobile-warning-ok:hover {
    background-color: #6bb81d;
    transform: translateY(-2px);
}

.mobile-warning-ok:active {
    transform: translateY(0);
}

/* Show overlay only on mobile devices */
@media (max-width: 768px) {
    .mobile-warning-overlay {
        display: flex;
    }
}

/* 404 Error Page Styles */
#error-section {
    background-color: var(--page-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.error-bento-box {
    background-color: #292929;
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.error-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1;
}

.error-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.error-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 40px;
}

.error-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.btn-error-home {
    background-color: #7ed321;
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 14px 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-error-home:hover {
    background-color: #6bb81d;
    transform: translateY(-2px);
}

.btn-error-home:active {
    transform: translateY(0);
}

.error-quick-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.error-quick-links a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-quick-links a:hover {
    color: var(--white);
}

.error-quick-links .separator {
    color: #666666;
}

@media (max-width: 768px) {
    .error-title {
        font-size: 4rem;
    }
    
    .error-subtitle {
        font-size: 1.5rem;
    }
    
    .error-bento-box {
        padding: 40px 30px;
    }
}
