* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

/* Navigation - Matched with service page */
.navbar {
    background: #2c3e50;
    box-shadow: 0px 1px rgba(255, 255, 255, 0.573);
    padding: 0 5%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo i {
    color: white;
    font-size: 2rem;
    margin-right: 12px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(4, 208, 157, 0.833);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-links a i {
    margin-right: 8px;
    font-size: 0.9em;
}

.nav-links a:hover {
    color: rgba(4, 208, 157, 0.833);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(4, 208, 157, 0.833);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown > a::after {
    
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 0.8em;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f1f1;
    color: #2c3e50;
}

.dropdown-content a i {
    color: rgba(4, 208, 157, 0.833);
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Form Styles */
.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
}

p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

#verificationForm {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

.form-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

input, select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

button[type="submit"] {
    background-color: rgba(4, 208, 157, 0.833);
    color: white;
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: rgba(3, 180, 135, 0.833);
}

.confirmation-checkbox {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
}

.confirmation-checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}