/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    overflow: hidden;
}

/* Logo Container */
.logo-container {
    position: absolute;
    top: 30px; /* Adjust as needed for better alignment */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.logo {
    width: 120px; /* Adjust size as needed */
    height: auto;
}

/* Overlay to improve text visibility */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark semi-transparent overlay */
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Heading */
.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f4a261;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6); /* Text shadow for better readability */
}

/* Hero Paragraph */
.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.6;
}

/* Call-to-Action Button */
.cta-button {
    background-color: #e76f51;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #f4a261;
    transform: translateY(-5px);
}

/* How It Works Section */
.how-it-works {
    background-color: #f4f4f4;
    padding: 50px 0;
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.how-it-works p {
    font-size: 1.2rem;
    color: #555;
}

.how-it-works .steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.how-it-works .step {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 15px;
    flex-basis: 30%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.how-it-works .step h3 {
    font-size: 1.5rem;
    color: #e76f51;
    margin-bottom: 10px;
}

.how-it-works .step p {
    font-size: 1rem;
    color: #333;
}

/* Services Section */
.services-section {
    padding: 50px 20px;
    background-color: #fff;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.services-section p {
    font-size: 1.2rem;
    color: #555;
}

.service-offerings {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 20px;
    margin: 15px;
    flex-basis: 30%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service h3 {
    font-size: 1.5rem;
    color: #e76f51;
    margin-bottom: 10px;
}

.service p {
    font-size: 1rem;
    color: #333;
}

/* Pricing Table */
.pricing-table {
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.pricing-table .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-table h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.pricing-table p {
    font-size: 1.2rem;
    color: #555;
}

.pricing-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.pricing-option {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin: 15px;
    flex-basis: 30%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-option h3 {
    font-size: 1.8rem;
    color: #e76f51;
    margin-bottom: 10px;
}

.pricing-option p {
    font-size: 1.2rem;
    color: #333;
}

.pricing-option .price {
    font-size: 2rem;
    font-weight: 700;
    color: #e76f51;
    margin-top: 20px;
}

/* Contact Section */
.contact-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.contact-section .section-header {
    margin-bottom: 30px;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2rem;
    color: #555;
}

.contact-section a {
    color: #e76f51;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

footer p {
    font-size: 1rem;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile-friendly Styling */
@media screen and (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .logo {
        width: 100px; /* Smaller logo on mobile */
    }

    .how-it-works .step {
        flex-basis: 100%;
    }

    .service {
        flex-basis: 100%;
    }

    .pricing-option {
        flex-basis: 100%;
    }
}