/* GENERAL */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Post card */
.post-card {
    border: 1px solid #ddd;
    padding: 1px;
    border-radius: 1px;
    background: #fff;
    height: 100px;
}

/* fixed square container */
.post-image-container {
    width: 20%;
    height: 20px;           /* square height */
    background: #f4f4f4;
    text-align: center;
    line-height: 20px;      /* vertical centering trick */
    overflow: hidden;
    margin-bottom: 10px;
}

/* image scaling */
.post-image {
    max-width: 10%;
    max-height: 10%;
    vertical-align: middle;
}


/* TEXT */
.post-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.post-content {
    font-weight: normal;
    font-size: 14px;
    color: #555;
     background: #dae0e6;
}



.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.3);
}



/* HERO */
.hero-section {
    background: linear-gradient(135deg, #0d6efd, #dc3545);
    padding: 100px 0;
}

/* SECTION TITLES */
.section-title {
    font-weight: bold;
    color: #0d6efd;
}

/* SERVICES */
.service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 20px;
}

/* PRICES */
.prices-section {
    background-color: #dc3545;
}

.price-list {
    list-style: none;
    padding: 0;
}

.price-list li {
    background: #ffffff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

/* FOOTER */
.footer {
    background-color: #0d6efd;
}
