body {
    background-color: #5a8cc6;
}
.home-previews {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    gap: 20px;
}
.preview-card {
    min-width: calc(50% - 10px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}
.preview-card:hover {
    transform: translateY(-5px);
}
.preview-card img,
.preview-image-placeholder {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.preview-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.preview-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.preview-content p {
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}
.preview-btn {
    margin-top: 15px;
    align-self: flex-start;
    text-decoration: none;
    background: #02275c;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
}
.quick-links {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ql-box {
    background: #fff;
    border-radius: 16px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.25s;
}
.ql-box i {
    font-size: 48px;
    margin-bottom: 10px;
    color: #02275c;
}
.ql-box span {
    font-size: 14px;
}
.ql-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.ql-image {
    width: auto;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}
@media (max-width: 62em) {
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
	.preview-card img,
	.carousel-item img {
        width: 100%; 
		height: auto; 
		object-fit: contain;
    }
}
@media (max-width: 36em) {
    .quick-links {
        grid-template-columns: 1fr;
    }
	.preview-card img,
	.carousel-item img {
        width: 100%; 
		height: auto; 
		object-fit: contain;
    }
}
@media (max-width: 48em) {
    .home-previews {
        flex-direction: column;
    }
    .preview-card img,
	.carousel-item img {
     	width: 100%; 
		height: auto; 
		object-fit: contain;
    }
}