*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;
}
html{
    scroll-behavior:smooth;
}
body{
    background:#f8f8f8;
    color:#222;
}
/* Layout */
.container{
    display:flex;
    //min-height:100vh;
	width:100% !important;
}
/* Sidebar */
.sidebar{
    width:260px;
    background:#111;
    border-right:3px solid #d4af37;
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    padding:35px 20px;
    overflow-y:auto;
}
.logo{
    color:#d4af37;
    font-size:28px;
    font-weight:bold;
    text-align:center;
    margin-bottom:40px;
}
.sidebar ul{
    list-style:none;
}
.sidebar li{
    margin-bottom:12px;
}
.sidebar a{
    display:block;
    color:#fff;
    text-decoration:none;
    padding:14px 18px;
    border-radius:8px;
    transition:.3s;
	border: 1px solid #d4af374f;
}
.sidebar a:hover{
    background:#d4af37;
    color:#111;
}
/* Main Content */
.content{
    margin-left:260px;
    width:calc(100% - 260px);
    padding:50px;
}

#download {
    padding: 60px 20px;
    background: #f7f9fc;
}

#download .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

#download .card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .3s ease;
}

#download .card:hover {
    transform: translateY(-5px);
}

#download .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

#download .card h3 {
    margin: 20px 15px 10px;
    color: #333;
}

#download .card p {
    margin: 0 15px 20px;
    color: #666;
    line-height: 1.6;
}

#download .btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 12px 24px;
    background: #d4af37;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
}

#download .btn:hover {
    background: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(184, 134, 11, 0.3);
}

/* Tablet */
@media (max-width: 992px) {
    #download .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    #download .container {
        grid-template-columns: 1fr;
    }
}
/* Sections */
section{
    margin-bottom:60px;
}
.card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-top:4px solid #d4af37;
    border-radius:12px;
    padding:35px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
	border-bottom: 2px solid #d4af37;
}
h1,h2{
    color:#111;
    margin-bottom:20px;
}
p{
    color:#555;
    line-height:1.8;
}
/* Button */
.btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 30px;
    background:#111;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    border:2px solid #111;
    font-weight:600;
    transition:.3s;
}
.btn:hover{
    background:#d4af37;
    border-color:#d4af37;
    color:#111;
}
/* Installation Steps */
.steps{
    margin-top:15px;
    padding-left:22px;
}
.steps li{
    margin:12px 0;
    color:#444;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.logo img {
    max-height: 70px;
    width: 200px;
}
/* FAQ */
details{
    margin-top:15px;
    background:#fafafa;
    border:1px solid #ddd;
    border-left:5px solid #d4af37;
    border-radius:8px;
    padding:15px;
}
summary{
    cursor:pointer;
    font-weight:600;
}
details p{
    margin-top:12px;
}
/* Footer */
footer{
    margin-top:40px;
    text-align:center;
    color:#777;
    padding-bottom:30px;
}
/* Tablet */
@media (max-width:768px){
.container{
    display:block;
}
.sidebar{
    position:relative;
    width:100%;
    border-right:none;
    border-bottom:3px solid #d4af37;
    padding:20px 15px;
}
.logo{
    font-size:24px;
    margin-bottom:20px;
}
.sidebar ul{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}
.sidebar li{
    margin:0;
}
.sidebar a{
    padding:10px 15px;
    border:1px solid rgba(255,255,255,.2);
}
.content{
    margin-left:0;
    width:100%;
    padding:25px;
}
.card{
    padding:25px;
}
.btn{
    display:block;
    width:100%;
    text-align:center;
}
}
/* Mobile */
@media (max-width:480px){
.logo{
    font-size:22px;
}
.sidebar ul{
    flex-direction:column;
    align-items:stretch;
}
.sidebar a{
    text-align:center;
}
.content{
    padding:15px;
}
.card{
    padding:20px;
}
h1{
    font-size:26px;
}
h2{
    font-size:22px;
}
p,
.steps li{
    font-size:14px;
}
.btn{
    padding:15px;
}
}

#installation {
    padding: 70px 20px;
    background: #f7f9fc;
}

#installation .section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

#download .section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

#installation .section-title h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

#installation .section-title p {
    color: #666;
    line-height: 1.7;
}

#subscription {
    padding: 70px 20px;
    background: #f7f9fc;
}

#subscription .section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

#subscription .section-title h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

#subscription .section-title p {
    color: #666;
    line-height: 1.7;
}

.installation-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
	transition: .3s ease;
}

#installation .card:hover {
    transform: translateY(-5px);
}

.video-card h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    .installation-container {
        grid-template-columns: 1fr;
    }

    #installation .section-title h2 {
        font-size: 28px;
    }
}


/* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
    font-size: 18px;
    font-weight: 500;
    color: #0b0b0b;
    background: #d4af37;
    padding: 10px 20px;
    text-align: center;
    border-radius: 10px;
}

#basicPlan, #standardPlan {
    display:none;
}