body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: #e6e6e6;
}

h1, h2, h3 {
    color: #ffffff;
    letter-spacing: 1px;
}

a {
    color: #ff6600;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    background: #000;
    border-bottom: 1px solid #222;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ff6600;
}

.nav-links li {
    display: inline-block;
    margin-left: 25px;
}

.nav-links a {
    color: #e6e6e6;
    font-size: 1rem;
}

.nav-links a.active {
    color: #ff6600;
}

.page-header {
    text-align: center;
    padding: 40px 20px;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.quote-section {
    max-width: 650px;
    margin: auto;
    padding: 20px;
}

.quote-section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #cccccc;
}

.quote-form {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
}

.quote-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #cccccc;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 12px;
    background: #262626;
    color: #e6e6e6;
    border: 1px solid #333;
    border-radius: 6px;
    font-size: 1rem;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #ff6600;
}

#price-display {
    text-align: center;
    margin: 25px 0;
    font-size: 2.4rem;
    font-weight: bold;
    color: #ff6600;
}

.quote-form button {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    background: #ff6600;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.2s ease;
}

.quote-form button:hover {
    background: #e65c00;
}

.quote-form button:nth-of-type(2) {
    background: #28a745;
}

.quote-form button:nth-of-type(2):hover {
    background: #218838;
}

footer {
    text-align: center;
    padding: 25px;
    background: #000;
    margin-top: 50px;
    border-top: 1px solid #222;
    color: #777;
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .nav-links li {
        display: block;
        margin: 10px 0;
    }

    #price-display {
        font-size: 2rem;
    }
}
