
/* Base */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

header {
    background: #ff5757;
    color: #fff;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: relative;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.logo a{
    text-decoration: none;
    color: #fff;
  
}
.logo a img{
  height: 60px;
}
.login-buttons a {
    background: #fff;
    color: #ff5757;
    padding: 8px 15px;
    margin-left: 10px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero .btn {
    display: inline-block;
    background: #ff5757;
    color: #fff;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 3px;
    text-decoration: none;
}

.info-table {
    max-width: 800px;
    margin: 30px auto;
    background: #fff;
    border-collapse: collapse;
    width: 100%;
}
.info-table th, .info-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.features {
    max-width: 900px;
    margin: 40px auto;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}
.feature {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
}
.feature img { width: 60px; margin-bottom: 10px; }

.content-section { max-width: 800px; margin: 40px auto; background: #fff; padding: 20px; border-radius: 5px; }

footer { background: #333; color: #fff; text-align: center; padding: 20px 0; margin-top: 40px; }

/* Mobile / off-canvas menu */
.mobile-menu-toggle { display: none; background: transparent; border: none; color: #fff; font-size: 20px; }
.site-nav-wrapper { position: relative; }
.offcanvas-nav {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: #1a1a1a; color: #fff; padding:50px 20px; box-shadow: -4px 0 12px rgba(0,0,0,0.3);
    transition: right 0.25s ease-in-out, transform 0.25s ease-in-out; z-index: 9999; overflow-y: auto;
    transform: translateX(0);
}
.offcanvas-nav.open { right: 0; transform: translateX(0); }
/* Ensure hidden by default when aria-hidden is true */
.offcanvas-nav[aria-hidden="true"] { right: -100%; transform: translateX(0); }
.offcanvas-nav[aria-hidden="false"] { right: 0; transform: translateX(0); }
.offcanvas-nav ul { display: block; }
.offcanvas-nav li { margin: 10px 0; }
.offcanvas-nav a { color: #fff; }
.offcanvas-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998; }
.offcanvas-overlay.show { display: block; }

.platform_img {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.platform_img img {
  width: 100%;
  height: auto;
  max-width: 500px;
}

.main_title .intro-title{
    margin-top: 50px;
    text-align: center;
}

.title_content{
    text-align: center;
    margin: 0 auto;
}

.content-title{
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

/* Responsive tweaks */
@media (max-width: 900px) {
    header .container { padding: 12px; }
    .hero { padding: 40px 16px; }
    nav { display: none; }
    .mobile-menu-toggle {
        display: inline-block;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
    }
    .login-buttons { display: none; }
    .info-table { width: 100%; margin: 20px 0px; }
    .features { gap: 12px; margin: 20px 10px; }
}
@media (max-width: 480px) { .offcanvas-nav { width: 45%; } }

