body {
    background: #222;
    color: #e5e5e5;
}

.contact-container {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container h1 {
    color: #007ced;
    margin-bottom: 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    padding: 2rem;
    background: #333;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #007ced;
}

.contact-item a {
    color: #e5e5e5;
    text-decoration: none;
}

.contact-item a:hover {
    color: #007ced;
}

.contact-form {
    padding: 2rem;
    background: #333;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e5e5e5;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: #444;
    border: 1px solid #555;
    border-radius: 5px;
    color: #e5e5e5;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007ced;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

button {
    background: #007ced;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #0056b3;
}

.thank-you-container {
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-container h1 {
    color: #007ced;
    margin-bottom: 1.5rem;
}

.thank-you-container p {
    color: #e5e5e5;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.thank-you-container .btn {
    display: inline-block;
    background: #007ced;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.thank-you-container .btn:hover {
    background: #0056b3;
}