html, body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
}
header {
    position: fixed;
    height: 80px;
    top: 0;
    left: 0;
    right: 0;
    background-color: #5E49D4;
    z-index: 3;
}
a {
    color: #5E49D4;
}
#header {
    padding: 0 15px;
    height: 80px;
}
main {
    padding-top: 100px;
    padding-bottom: 20px;
}
footer {
    min-height: 300px;
    background-color: #1A2026;
}
.into {
    min-height: 300px;
    margin: auto;
    padding: 20px 15px;
    max-width: 1200px;
}
.into-large {
    min-height: 300px;
    margin: auto;
    padding: 20px 15px;
    max-width: 1360px;
}
h2 {
    font-size: 52px;
    margin-top: 80px;
}
.faq-item {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 5px 30px 5px 15px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 18px;
}
.question b, .answer b {
    position: absolute;
    width: 100px;
}
.question p, .answer p {
    padding-left: 100px;
}
.answer {
    display: none;
}
.plus, .minus {
    position: absolute;
    top: 20px;
    right: 10px;
    cursor: pointer;
}
.minus {
    display: none;
}
.marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
}

.marquee-content img {
    height: 80px;
    margin: 0 20px;
    vertical-align: middle;
}
.f22 {
    font-size: 22px;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    padding: 0px;
}

.service {
    background: #fbfbfb;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service img {
    height: 80px;
    margin-bottom: 0px;
}

.service h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111;
}

.service p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.service a {
    color: #e6007e;
    text-decoration: none;
    font-weight: bold;
}

.h2colored {
    color: #e6007e;
}
.checklist-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.checklist-column {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checklist-item {
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    font-weight: bold; /* Make text bold */
    line-height: 1.5;
}

.checklist-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-image: url('/images/mark.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.pic50 {
    display: block;
    width: 50%;
    float: left;
}
.clear {
    clear: both;
}

.delivery-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 0;
    margin: 0 -15px;
    font-size: 18px;
}

.card {
    background: #fcfcfc;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    padding: 20px;
    width: calc(25% - 30px);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon {
    object-fit: contain;
    margin-bottom: 10px;
}

h3 {
    font-size: 18px;
    margin: 10px 0;
}

.old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 14px;
}

button {
    margin-top: 10px;
    background-color: #5E49D4;
    color: white;
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.card:hover button {
    background-color: #00c853;
}





@media (max-width: 768px) {
    h2 {
        font-size: 32px;
    }
    .pic50 {
        width: 100%;
        float: none;
    }
    .card {
        width: 100%;
    }
    .delivery-options {
        margin: 0;
    }
    .f22 {
        font-size: 16px;
    }
}

