.design2 {
    /* background: #f8f9fa; */
    padding: 60px 20px;
}

.design2 .container {
    max-width: 1200px;
    margin: 0 auto;
}

.design2 h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
}

.design2 .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

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

.design2 .card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.design2 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.design2 .card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #007bff;
    font-weight: bold;
    margin-left: 2.5rem;
}
.design2 .card hr {
    /* color: #007bff; */
    /* height: 2px; */
    margin-top: 0px;
    margin-bottom: 1rem;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-left: 2.5rem;
    border: 1px solid #007bff;
}
.design2 .contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.design2 .contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.design2 .contact-info strong {
    min-width: 100px;
    color: #333;
}

@media(orientation: portrait) {
    .design2 {
        padding: 0px;
    }
}