
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background: url('https://via.placeholder.com/1200x200') no-repeat center;
    background-size: cover;
    height: 60px;
    position: relative;
}

.header-info {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 10px;
}

.nav {
    display: flex;
    justify-content: space-around;
    background: #1a2a44;
    padding: 10px 0;
    color: white;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.nav a:hover {
    color: #00aaff;
}

.content {
	max-width: 80%;
	margin: auto;
    padding: 15px;
    text-align: left;
    flex: 1 0 auto;
}

.footer {
    background: #1a2a44;
    color: white;
    text-align: center;
    padding: 10px 0;
    flex-shrink: 0;
}

.footer a {
    color: #00aaff;
    margin: 0 5px;
    font-size: 0.9rem;
}

/* Specific Component Styles */
.features {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    flex-wrap: wrap;
}

.feature-card {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #1a2a44;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.registration {
    max-width: 100%;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.registration input, .registration select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.9rem;
}

.registration button {
    background: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 0.9rem;
}

.registration button:hover {
    background: #0056b3;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    width: 45%;
    margin-bottom: 10px;
}

.stat-card h2 {
    color: #007bff;
    margin: 0;
    font-size: 1.5rem;
}

.stat-card p {
    color: #666;
    margin: 5px 0;
    font-size: 0.8rem;
}

.package {
    display: inline-block;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    width: 30%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.package h3 {
    color: #1a2a44;
}

.package p {
    color: #666;
}

.package button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.package button:hover {
    background: #0056b3;
}

.contact-card {
    display: inline-block;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    width: 25%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-card h3 {
    color: #1a2a44;
}

.contact-card p {
    color: #666;
}

.terms-section, .refund-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 10px auto;
    max-width: 600px;
    text-align: left;
}

.about-image {
    max-width: 80%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pay-now {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.pay-now button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.pay-now button:hover {
    background: #0056b3;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .header {
        height: 40px;
    }
    .header-info h1 {
        font-size: 1.5rem;
		visibility: hidden;
    }
    .header-info p {
        font-size: 0.9rem;
    }
    .nav {
        flex-direction: column;
        text-align: center;
    }
    .nav a {
        margin: 5px 0;
        font-size: 1rem;
    }
    .features {
        flex-direction: column;
        align-items: center;
    }
    .feature-card {
        width: 80%;
    }
    .stats {
        flex-direction: column;
    }
    .stat-card {
        width: 100%;
    }
    .registration input, .registration select, .registration button {
        font-size: 1rem;
    }
    .package {
        width: 100%;
    }
    .contact-card {
        width: 100%;
    }
    .terms-section, .refund-section {
        max-width: 100%;
    }
    .about-image {
        max-width: 80%;
    }
    .footer {
        padding: 5px 0;
    }
    .footer a {
        display: block;
        margin: 5px 0;
    }
	{
    .terms-container {
        padding: 10px;
    }

    .terms-container h1 {
        font-size: 1.8em;
    }

    .terms-container h2 {
        font-size: 1.3em;
    }

    .terms-container p,
    .terms-container li {
        font-size: 0.95em;
    }
}




/* Terms of Service Page Styles for Cabexa Cabs */

/* Container for the Terms content */
.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main heading */
.terms-container h1 {
    font-size: 2.2em;
    color: #1a3c6d; /* Primary brand color (assumed blue for cab service) */
    text-align: left;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Section headings */
.terms-container h2 {
    font-size: 1.5em;
    color: #1a3c6d;
    margin-top: 20px;
    border-bottom: 2px solid #3498db; /* Secondary brand color */
    padding-bottom: 5px;
    font-weight: 600;
}

/* Paragraphs and list items */
.terms-container p,
.terms-container li {
    font-size: 1em;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Unordered lists */
.terms-container ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Links */
.terms-container a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-container a:hover {
    color: #1a3c6d;
    text-decoration: underline;
}

/* Contact information section */
.contact-info {
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Last updated text */
.last-updated {
    font-style: italic;
    color: #7f8c8d;
    text-align: left;
    margin-bottom: 20px;
}