@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --wf-bg: #ffffff;
    --wf-text: #333333;
    --wf-text-muted: #666666;
    --wf-accent: #E0217A; /* AapkaLove's primary pink accent */
    --wf-accent-red: #E0217A; /* Matching the brand color */
    --wf-font-main: 'Inter', sans-serif;
    --wf-font-mono: 'JetBrains Mono', 'Geist Mono', monospace;
}

body.wf-theme {
    background-color: var(--wf-bg);
    color: var(--wf-text);
}

.wf-wrapper {
    background-color: var(--wf-bg);
    color: var(--wf-text);
    min-height: 100vh;
    padding: 180px 5% 100px 5%; /* Generous top padding to clear fixed header */
    font-family: var(--wf-font-main);
    font-size: 1.1rem;
    line-height: 1.7;
}

.wf-container {
    max-width: 1100px;
    margin: 0 auto;
}

.wf-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    margin-bottom: 120px;
    border-top: 1px solid rgba(0, 0, 0, 0.08); /* Dark line for light mode */
    padding-top: 40px;
}

.wf-section:first-child {
    border-top: none;
    padding-top: 0;
}

/* Left Column: Chapter Label */
.wf-col-left {
    position: relative;
}

.wf-chapter {
    position: sticky;
    top: 120px;
    font-family: var(--wf-font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wf-text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.wf-chapter span {
    color: var(--wf-accent-red);
}

/* Right Column: Content */
.wf-col-right {
    max-width: 800px;
}

.wf-col-right h1 {
    font-family: var(--al-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #111111;
    letter-spacing: -0.03em;
}

.wf-col-right h2 {
    font-family: var(--al-font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 24px;
    color: #111111;
    letter-spacing: -0.02em;
}

.wf-col-right p {
    font-family: var(--wf-font-main);
    font-size: 1.15rem; /* Clean, modern text size */
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--wf-text);
    font-weight: 400;
}

.wf-col-right p:last-child {
    margin-bottom: 0;
}

.wf-col-right strong {
    font-weight: 600;
    color: #000000;
}

.wf-highlight {
    color: var(--wf-accent);
    font-weight: 600;
    font-style: normal;
}

.wf-col-right ul, .wf-col-right ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.wf-col-right li {
    font-family: var(--wf-font-main);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--wf-text);
}

.wf-contact-info {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}

/* Form Styles for Contact */
.wf-form-group {
    margin-bottom: 24px;
}

.wf-form-group label {
    display: block;
    font-family: var(--wf-font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--wf-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.wf-form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    color: #111111;
    font-family: var(--wf-font-main);
    font-size: 1.1rem;
    padding: 12px 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.wf-form-control:focus {
    border-bottom-color: var(--wf-accent);
}

.wf-form-control::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.wf-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--wf-accent);
    color: #ffffff;
    font-family: var(--al-font-display);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 20px;
}

.wf-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 33, 122, 0.3);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .wf-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wf-chapter {
        position: relative;
        top: 0;
        margin-bottom: 10px;
    }
    
    .wf-wrapper {
        padding-top: 140px;
    }
    
    .wf-col-right p {
        font-size: 1.05rem;
    }
}

