body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background: #faf4e4;
    color: #333;
}

.top-nav {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo-img {
    height: 40px;
}

.center-section, .right-section {
    display: flex;
    align-items: center;
}

.back-btn {
    background: linear-gradient(45deg, #4a90e2, #00c6ff);
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    margin: 10px;
}

.back-btn:hover {
    background-color: #3498db;
    transform: scale(1.05);
}

.cta-buttons {
    display: flex;
    gap: 10px;
}

.cta-btn {
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    color: #000;
    padding: 0.5em 1em;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.2s ease-in-out, background-color 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 10px rgba(0,0,0,0.15);
}

.main-header {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.person {
    width: 15%;
    position: absolute;
    transition: all 1s ease;
}

.person1 {
    left: -20%;
}

.person2 {
    right: -20%;
}

.text {
    position: absolute;
    bottom: 10%;
    width: 50%;
}

.contact-section {
    padding: 2em 1em;
    text-align: center;
    background: #f0f4f8;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5em;
    margin-bottom: 1em;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 1.5em;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 0.5em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    resize: none;
}

.contact-form .submit-btn {
    background: linear-gradient(45deg, #6a5acd, #1e90ff);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, background-color 0.3s;
}

.contact-form .submit-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #5a4abd, #0e80ff);
}

.main-footer {
    text-align: center;
    padding: 1em;
    background: #000;
    color: #fff;
}
