/* ====== Global Styles & Variables ====== */
:root {
    --primary-color: #ad013d;
    --light-pink: #ffbfbf;
    --hover-pink: #ff9999;
    --text-color: #555;
    --heading-color: #333;
    --white: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --disabled-color: #666; /* Added for breadcrumbs */
}

/* ====== Base Styles ====== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffeee6;
    color: var(--text-color);
}

h1, h2 {
    text-align: center;
    color: var(--primary-color);
    margin: 10px auto;
}

p {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ====== Privacy Policy Section ====== */
.privacy-policy {
    max-width: 800px;
    margin: 90px auto 40px auto; /* Fixed margin conflict */
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.privacy-policy h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.privacy-policy h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.privacy-policy p {
    font-size: 16px;
}

/* ====== Breadcrumbs ====== */
.breadcrumb {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 14px;
    text-align: left;
}

.breadcrumb a {
    font-weight: bold;
}

.breadcrumb span {
    color: var(--disabled-color);
    cursor: not-allowed;
}

/* ====== Offer/Grid Sections ====== */
.offer, .choose-us {
    margin: 30px 0;
}

.offer-grid, .choose-grid {
    display: grid;
    gap: 10px;
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-grid { grid-template-columns: repeat(2, 1fr); }
.choose-grid { grid-template-columns: repeat(4, 1fr); }

.offer-item, .choose-item {
    text-align: center;
    background-color: var(--light-pink);
    border-radius: 12px;
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.offer-item {
    padding: 30px;
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    max-width: 300px;
    margin: 20px auto;
}

.choose-item {
    padding: 20px;
}

.offer-item .icon {
    margin-bottom: 10px;
    font-size: 25px;
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.offer-item h3, .choose-item h3 {
    font-size: 1.2em;
    margin: 10px 0;
    color: var(--heading-color);
}

.offer-item p, .choose-item p {
    font-size: 1em;
}

/* ====== Hover Effects ====== */
.offer-item:hover {
    background-color: var(--hover-pink);
    box-shadow: 0 6px 15px var(--shadow-color);
    transform: scale(1.03);
}

.offer-item:hover .icon {
    color: #ff3366;
    transform: scale(1.2) rotate(360deg) translateY(-5px);
}

.offer-item:hover h3,
.offer-item:hover p {
    color: var(--white);
}

.offer-item:hover::after {
    opacity: 1;
}

/* ====== Responsive Design ====== */
@media (max-width: 900px) {
    .offer-grid { grid-template-columns: 1fr; }
    .choose-grid { grid-template-columns: repeat(2, 1fr); }
    h1, h2 { font-size: 24px; }
    p { font-size: 15px; }
}

@media (max-width: 768px) {
    .offer-item {
        max-width: 90%;
        padding: 20px;
    }
    .offer-item h3 { font-size: 1.3em; }
    .offer-item p { font-size: 0.9em; }
}

@media (max-width: 600px) {
    .offer-grid, .choose-grid { grid-template-columns: 1fr; }
    .offer-item, .choose-item { width: 100%; }
    h1, h2 { font-size: 22px; }
    p { font-size: 14px; }
}