.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin: 40px 0;
}

.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.catalog-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-5px);
}

.catalog-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.05);
}

.catalog-info {
    padding: 20px;
    text-align: center;
}

.catalog-info h2 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
}

.download-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #388e3c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.download-link:hover {
    background-color: #2d7230;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
        margin: 30px 0;
    }

    .catalogs-grid {
        gap: 20px;
        padding: 10px;
    }
} 