.minimal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
}

.hero-section {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.hero-section h1 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.hero-section p {
    font-size: 1em;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 35px 30px;
    text-align: left;
    transition: border-color 0.2s ease;
}

.service-card:hover {
    border-color: #0073aa;
}

.service-card h2 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.service-button {
    display: inline-block;
    padding: 12px 30px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
    font-size: 0.95em;
    transition: background 0.2s ease;
}

.service-button:hover {
    background: #005177;
    color: white;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 1.6em;
    }
    
    .service-card {
        padding: 25px 20px;
    }
}