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

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.software-showcase {
    padding: 3rem 0;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.software-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: #1e5799;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.card-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.features {
    margin-bottom: 1.5rem;
}

.features li {
    list-style-type: none;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.features li:before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
}

.btn {
    display: inline-block;
    background: #1e5799;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #15467a;
}


.contact-info {
    margin-top: 1rem;
}

.contact-info a {
    color: #4CAF50;
    text-decoration: none;
}

@media (max-width: 768px) {
    .software-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }
}