.approach-section {
    padding: 100px 5%;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.approach-container {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 800px;
}

.approach-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.approach-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    font-style: italic;
    color: #555;
}

.approach-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.approach-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #cc5500;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #cc5500;
}

.feature-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.approach-footer {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.closing-line {
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333;
    font-style: italic;
}

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .approach-title {
        font-size: 2rem;
    }
    .closing-line {
        font-size: 1.2rem;
    }
}
