/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    font-size: 16px;
    color: #fff;
    background-color: #f4f4f4;
}

/* Header */
header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

header .logo img {
    height: 200px; /* Adjust logo size */
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .cta-button {
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.1rem;
}

.hero .cta-button:hover {
    background-color: #0056b3;
}

/* About Section */
.about {
    padding: 60px 20px;
    background-color: #fff;
    color: #333;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    width: 70%;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background-color: #f2f2f2;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 1.1rem;
    color: #333;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero .hero-content p {
        font-size: 1rem;
    }

    .about p {
        width: 90%;
    }

    .contact-info p {
        font-size: 1rem;
    }
}
