/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.0;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 0.1rem 0;
    font-size: 1.5rem
}

header .logo img {
    max-width: 200px;
    height: auto;
}



nav {
    background-color: #34495e;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #465c71;
    border-radius: 4px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: #f9f9f9;
}

.buyback-info {
    background-color: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.condition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.condition-table th, .condition-table td {
    border: 1px solid #ddd;
    padding: 0.8rem;
    text-align: left;
}

.condition-table th {
    background-color: #34495e;
    color: white;
}

.condition-table tr:nth-child(even) {
    background-color: #f2f2f2;
}
.booking-form {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: #34495e;
}

/* Add more CSS for cards, forms, and other elements */