 /* Orange Color Scheme */
 body {
    background-image: url('../media/bhutan.png'); /* Adjusted path */
    background-repeat: repeat;
    background-size: 150px; /* Fixed size instead of percentage */
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

 .terms-header {
    padding: 3rem 0;
    color: rgb(16, 16, 16);
    margin-bottom: 2rem;
}

.terms-title {
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.terms-card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 123, 37, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.card-header {
    background-color: #ff7b25;
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

.card-title {
    font-weight: 600;
    font-size: 1.8rem;
}

.card-body {
    padding: 2rem;
}

.section-title {
    color: #ff5200;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    border-bottom: 2px solid #ffe0d0;
    padding-bottom: 0.5rem;
}

.terms-list {
    padding-left: 1.5rem;
}

.terms-list li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: none;
}

.terms-list li:before {
    content: "•";
    color: #ff7b25;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.highlight-box {
    background-color: #fff5f0;
    border-left: 4px solid #ff7b25;
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 0 5px 5px 0;
}

.highlight-box h5 {
    color: #ff5200;
    font-weight: 600;
}

.highlight-box i {
    margin-right: 0.5rem;
}

.card-footer {
    background-color: #f8f9fa;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(255, 123, 37, 0.1);
}

.btn-back {
    color: #ff7b25;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    color: #ff5200;
    text-decoration: underline;
}

.btn-back i {
    margin-right: 0.5rem;
}
.community-standards {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.standard-card {
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.standard-card i {
    margin-right: 10px;
    color: #e93f2c;
}
/* Icons color */
.bi-person-check, .bi-globe, .bi-exclamation-circle {
    color: #ff7b25;
}

.footer {
    margin-top: auto;
    background-color: #ffff;
    padding: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    background-image: url('../media/bhutan.png'); /* Adjusted path */
    background-repeat: repeat;
    background-size: 150px; /* Fixed size instead of percentage */
    background-attachment: fixed;
    margin-bottom: 1px;
}