.pitch body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.pitch header {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.pitch header h1 {
    margin: 0;
}

.pitch section {
    padding: 40px 20px;
}

.pitch .content {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pitch .intro .content {
    text-align: center;
}

.pitch .services,
.pitch .commitment {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pitch .service,
.pitch .commitment-item {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.pitch .service img,
.pitch .commitment-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.pitch .cta {
    text-align: center;
    margin: 20px 0;
}

.pitch .cta a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.pitch .cta a:hover {
    background-color: #2980b9;
}

.pitch footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

