* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100vh;
}

h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #333;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: #222;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
}

.navbar a:hover {
    color: #e5a347;
}

#showcase {
    background-image: url('lobby.jpg');
    height: 100%;
}

#showcase .showcase-content {
    text-align: center;
    padding-top: 100px;
}

.showcase-content h1 {
    font-size: 100px;
    margin-bottom: 20px;
    color: #e5a347;
}

.showcase-content p {
    font-size: 40px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: rgb(227, 157, 37);
    color: #fff;
    padding: 10px 30px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.btn:hover {
    color: #201d1d;
}

.description-container {
    background-color: #201d1d;
    display: flex;
    align-items: stretch; 
}

#description .description-content {
    flex: 1; 
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#description .description-img {
    flex: 1; 
    height: 500px;
}

#description .description-content .btn {
    width: 160px;
    margin: 0 auto;
    margin-top: 20px;
}

#description .description-content h1 {
    font-size: 50px;
    color: #e5a347;
    margin-bottom: 20px;
}

.footer {
    font-size: 14px;
    background-color: #201d1d;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.clear {
    clear: both;
}

/* Contact Information styles */
.contact {
    display: flex;
    justify-content: space-between;
    background-color: #f9f9f9;
    color: #201d1d;
}

.contact .section-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 10px;
    margin-top: 40px;
    text-align: center;
}

.contact p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}

#contact-info .box {
    float: left;
    width: 33.3%;
    padding: 50px;
    text-align: center;
}

.contact-form button:hover {
    background-color: #555;
}

h1, h2, h3 {
    padding-bottom: 20px;
}

.confirmation {
    text-align: center;
    padding: 20px;
    font-size: 24px;
}

#features {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    text-align: center;
    padding: 50px;
}

.bg-dark {
    background-color: peru;
    color: #333;
}

.bg-light {
    background-color: #dad5d5;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    overflow: auto;
}

.fa-solid {
    margin-bottom: 50px;
}

.about h1 {
    color: #e0a638;
    font-size: 44px;
}

.about p {
    color: #333;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.about .section-content-left {
    width: 50%;
    padding: 20px;
}

.about .section-content-right {
    background: url('guiatr.jpg') no-repeat center center/cover;
    height: 80%;
    width: 20%;
    border-radius: 70%;
    margin-right: 400px;
}

.about {
    background-color: #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#testimonials {
    background: url('about.jpg') no-repeat center center/cover;
    height: 600px;
}

#testimonials h2 {
    color: white;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
    font-size: 44px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial {
    background-color: #333;
    color: #fff;
    margin: 20px;
    border-radius: 5px;
    text-align: left;
}

.bg-primary {
    background-color: #d09952;
    color: #fff;
}

#testimonials .testimonial {
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
    opacity: 0.9;
}

#testimonials .testimonial img {
    width: 80px;
    height: 80px;
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}