/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    color: #0d6efd;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin-bottom: 2rem;
}

.back-button i {
    margin-right: 8px;
}

/* Hero Section */
.terms-hero {
    background: linear-gradient(rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.1));
    padding: 4rem 0;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.terms-hero h1 {
    font-weight: 700;
    color: #0d6efd;
}

/* Quick Navigation */
.quick-nav {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.nav-links a {
    color: #0d6efd;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(13, 110, 253, 0.1);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #0d6efd;
    color: #fff;
}

/* Terms Sections */
.terms-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header i {
    font-size: 2rem;
    color: #0d6efd;
    margin-right: 1rem;
}

.content-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.content-box ul {
    padding-left: 1.5rem;
}

.content-box li {
    margin-bottom: 0.5rem;
}

/* Info Boxes */
.info-box {
    background: rgba(13, 110, 253, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.alert-box {
    background: rgba(255, 193, 7, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
}

.alert-box i {
    font-size: 1.5rem;
    color: #ffc107;
    margin-right: 1rem;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.payment-methods span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-methods i {
    font-size: 1.5rem;
}

/* Delivery Zones */
.delivery-zones {
    margin-top: 1.5rem;
}

.zone-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.zone {
    background: #0d6efd;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    margin-right: 1rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .terms-hero {
        padding: 2rem 0;
    }

    .nav-links {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .payment-methods {
        flex-direction: column;
    }

    .zone-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
} 