body {
    background-color: #fff; /* Fondo blanco para todo el cuerpo */
}

/* General Main Styles */
main {
    padding: 0;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.search-bar {
    margin-top: 20px;
}

.search-bar input, .search-bar button {
    padding: 10px;
    font-size: 16px;
}

.search-bar input {
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    width: 70%;
}

.search-bar button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
}



.more-services {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.more-services span {
    font-size: 14px;
    color: #333;
    background-color: #e9ecef;
    padding: 5px 10px;
    border-radius: 4px;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.fixed-price-service {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.fixed-price-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.fixed-price-image img {
    max-width: 100%;
    border-radius: 8px;
}

.fixed-price-text {
    max-width: 50%;
}

.fixed-price-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.fixed-price-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.fixed-price-icons span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fixed-price-icons img {
    max-width: 20px;
}

.fixed-price-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}


.fixed-price-text button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.most-popular-projects,
.head-start-fall,
.angi-app {
    padding: 40px 0;
    text-align: center;
}

.most-popular-projects h2,
.head-start-fall h2,
.angi-app h2{
    margin-bottom: 20px;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project-item,
.service-item {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 20px);
}

.project-item img,
.service-item img {
    max-width: 50px;
    margin-bottom: 10px;
}

.project-item span,
.service-item span {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.angi-app p {
    margin-bottom: 20px;
}

.angi-app ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    display: inline-block;
}

.angi-app ul li {
    margin-bottom: 10px;
}

.angi-app .app-rating {
    font-size: 24px;
    margin: 20px 0;
}

.angi-app .app-rating .rating {
    font-weight: bold;
}

.angi-app .app-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.angi-app .app-screenshots {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.angi-app .app-screenshots img {
    max-width: 150px;
}