* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: white;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 20px 50px;
    border-bottom: 1px solid #eee;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.cta-button {
    background-color: red;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Hero Section */
#hero {
    background-color: #f5f5f5;
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-image {
    width: 500px;
    height: auto;
}

.hero-text {
    max-width: 600px;
}

#hero h1 {
    color: #333;
    font-size: 3rem;
}

#hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

#hero .cta-button {
    background-color: red;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
}

/* About Section */
#about {
    display: flex;
    justify-content: space-between;
    padding: 100px 50px;
    background-color: white;
}

#about .about-content {
    width: 50%;
}

#about .about-image img {
    width: 100%;
    height: auto;
}

/* Services Section */
#services {
    background-color: red;
    padding: 100px 50px;
    color: white;
    text-align: center;
}

#services h2 {
    margin-bottom: 50px;
}

.service-grid {
    display: flex;
    justify-content: space-around;
}

.service {
    background-color: white;
    color: red;
    padding: 20px;
    border-radius: 5px;
    width: 30%;
}

/* Contact Section */
#contact {
    background-color: red;
    color: white;
    padding: 100px 50px;
    text-align: center;
}

#contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

#contact input, #contact textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

#contact button {
    padding: 15px;
    background-color: white;
    color: red;
    border: none;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
}

.contact-details {
    font-size: 1.2rem;
}

/* Footer Section */
footer {
    background-color: darkred;
    color: white;
    text-align: center;
    padding: 20px 50px;
}

footer .social-media {
    margin-top: 20px;
}

footer .social-media a {
    text-decoration: none;
    color: white;
    margin: 0 10px;
}
