body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #e5e7eb;
    line-height: 1.6;
}

header {
    background-color: #29293A;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

h1 {
    margin: 0 0 0.5rem;
    font-size: 2.75rem;
}

p.subtitle {
    font-size: 1.25rem;
    margin: 0;
}

main {
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

section {
    margin-bottom: 3rem;
}

h2 {
    color: #f97316;
    margin-bottom: 0.75rem;
    font-size: 2rem;
    border-bottom: 2px solid #f97316;
    display: inline-block;
}

ul {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cta {
    background-color: #f97316;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #ea580c;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    background-color: transparent;
}

.testimonial {
    background-color: #2c2c2c;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-style: italic;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.testimonial img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.image-block {
    text-align: center;
    margin-bottom: 2rem;
}

.image-block img {
    max-width: 100%;
    border-radius: 0.5rem;
}

footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}