/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #ff6f61;
    padding: 50px 0;
    text-align: center;
    color: white;
}

header h1 {
    font-size: 3rem;
    margin: 0;
}

header p {
    font-size: 1.5rem;
    margin-top: 10px;
}

.hero {
    background-image: url('hero-image.jpg'); /* Add your image path here */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-top: 20px;
}

.hero .btn {
    background-color: #ff6f61;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    margin-top: 20px;
}

.hero .btn:hover {
    background-color: #d35f53;
}

.about, .details, .contact {
    padding: 50px 0;
    text-align: center;
}

.about p, .details p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 20px;
}

.contact .btn {
    background-color: #ff6f61;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}
