/* Custom alignment utilities */

/* Center text for headings and sections */
.text-center {
    text-align: center;
}

/* Ensure container elements are properly aligned */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Adjust margins and paddings for tighter layout */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* Utility for full width elements */
.w-full { width: 100%; }

/* Ensure images are centered */
.img-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
