body {
    background: #0f172a;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    padding: 65px 20px;
    background: linear-gradient(to right, #111827, #1e293b);
}

h1 {
    font-size: 52px;
    margin-bottom: 8px;
    color: #22d3ee;
}

.subtitle {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 5px;
}

.service-location {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.header-buttons,
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

button {
    background: #06b6d4;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: #0891b2;
    transform: scale(1.04);
}

.secondary-button {
    background: #1e293b;
    color: white;
    border: 1px solid #22d3ee;
}

.secondary-button:hover {
    background: #334155;
}

section {
    padding: 35px 20px;
}

h2 {
    font-size: 32px;
    color: #22d3ee;
    margin-bottom: 18px;
}

.service-list {
    width: 70%;
    margin: auto;
}

.service-item {
    margin: 10px 0;
}

.service-title {
    width: 100%;
    background: #1e293b;
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 17px;
    text-align: left;
    cursor: pointer;
    margin-top: 0;
}

.service-title:hover {
    background: #334155;
}

.service-description {
    display: none;
    background: #111827;
    color: #cbd5e1;
    padding: 16px 20px;
    border-left: 4px solid #22d3ee;
    border-radius: 0 0 12px 12px;
    text-align: left;
    line-height: 1.5;
    font-size: 15px;
}

.service-description.active {
    display: block;
}

.process-box,
.info-box {
    background: #1e293b;
    width: 70%;
    margin: 12px auto;
    padding: 16px 20px;
    border-radius: 14px;
    text-align: left;
}

.process-box h3 {
    color: #22d3ee;
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 20px;
}

.process-box p,
.info-box p {
    line-height: 1.5;
    color: #cbd5e1;
    font-size: 15px;
    margin: 8px 0;
}

.contact-box {
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input,
textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #1e293b;
    color: white;
    font-size: 15px;
}

textarea {
    height: 130px;
    resize: none;
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

.upload-note {
    color: #94a3b8;
    font-size: 14px;
    text-align: left;
    margin: 0;
    line-height: 1.5;
}

#form-status {
    color: #22d3ee;
    font-weight: bold;
}

.bottom-dropdown-list {
    width: 70%;
    margin: auto;
}

.bottom-dropdown-item {
    margin: 10px 0;
}

.bottom-dropdown-title {
    width: 100%;
    background: #1e293b;
    color: white;
    border: 1px solid #22d3ee;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 17px;
    text-align: left;
    cursor: pointer;
    margin-top: 0;
}

.bottom-dropdown-title:hover {
    background: #334155;
}

.bottom-dropdown-description {
    display: none;
    background: #111827;
    color: #cbd5e1;
    padding: 16px 20px;
    border-left: 4px solid #22d3ee;
    border-radius: 0 0 12px 12px;
    text-align: left;
    line-height: 1.5;
    font-size: 15px;
}

.bottom-dropdown-description.active {
    display: block;
}

.bottom-dropdown-description p {
    margin: 10px 0;
}

footer {
    padding: 25px;
    background: #111827;
    margin-top: 30px;
    color: #94a3b8;
}

@media screen and (max-width: 768px) {
    header {
        padding: 50px 20px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 28px;
    }

    section {
        padding: 28px 15px;
    }

    .service-location {
        font-size: 13px;
    }

    .service-list,
    .bottom-dropdown-list,
    .process-box,
    .info-box,
    .contact-box {
        width: 90%;
    }

    button {
        width: 100%;
    }

    .header-buttons,
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .header-buttons a,
    .contact-buttons a {
        width: 90%;
    }
}