:root {
    --primary-gradient: linear-gradient(135deg, #e5097f 0%, #fb00ff 100%);
    --primary-color: #e5097f;
    --primary-text: #ce0371;
    --primary-text-dark: #b30064;
    --secondary-color: #F6F5F4;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 10px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

mark {
    background-color: #ffe6f0;
    color: var(--primary-text-dark);
    padding: 0 5px;
    font-weight: 700;
    border-radius: 4px;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
}

.before_title {
    color: var(--primary-text);
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-top: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    text-align: center;
}

.btn-magenta {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(229, 9, 127, 0.2);
}

.btn-magenta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(229, 9, 127, 0.4);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.header-menu {
    display: flex;
    gap: 30px;
    font-weight: 700;
}

/* Hero Mini (for secondary pages) */
.hero-mini {
    background: var(--secondary-color);
    padding: 150px 0 80px;
    text-align: center;
}

.hero-mini h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content Grid */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.content-img img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: var(--secondary-color);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-grid h3 {
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-grid a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

/* Cards */
.step-card,
.feature-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-card:hover,
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(229, 9, 127, 0.12);
}

.step-card h2,
.feature-card h3 {
    color: var(--primary-text);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.step-card img,
.feature-card img {
    width: 100%;
    border-radius: 12px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 10px 0;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
}

.breadcrumbs ul {
    display: flex;
    gap: 10px;
    padding: 0;
}

.breadcrumbs li::after {
    content: "/";
    margin-left: 10px;
}

.breadcrumbs li:last-child::after {
    content: "";
}

.breadcrumbs a {
    color: var(--primary-magenta);
    font-weight: 600;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .content-section {
        grid-template-columns: 1fr;
    }

    .hero-mini h1 {
        font-size: 2.5rem;
    }
}