.hero {
    text-align: center;
    padding: 80px 20px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.hero p {
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
    font-weight: 300;
}

.service-card ul {
    list-style-type: none;
    padding: 0;
}

.service-card ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-weight: 300;
}

.service-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

.process {
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-top: 40px;
}

.process h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step h3 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    color: #666;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }
} 