:root {
    --primary: #2C5F2D; 
    --primary-light: #97BC62;
    --secondary: #D4B996;
    --background: #F8F5F2; 
    --surface: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border: rgba(0,0,0,0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-image: radial-gradient(circle at top right, rgba(151, 188, 98, 0.1), transparent 40%),
                      radial-gradient(circle at bottom left, rgba(212, 185, 150, 0.2), transparent 40%);
}

.layout-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.card-container {
    background: var(--surface);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card-sidebar {
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(151, 188, 98, 0.15) 100%);
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.profile-image-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--surface);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.status-indicator {
    position: absolute;
    bottom: 8px;
    right: 12px;
    width: 18px;
    height: 18px;
    background-color: #25D366;
    border-radius: 50%;
    border: 3px solid var(--surface);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--surface);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.description {
    line-height: 1.6;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.persuasive-box {
    background: rgba(255, 255, 255, 0.6);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--primary);
    position: relative;
    width: 100%;
    text-align: left;
    min-height: 90px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.persuasive-box i {
    position: absolute;
    top: 15px;
    left: 10px;
    opacity: 0.15;
    font-size: 1.5rem;
}

.message-text {
    position: relative;
    z-index: 1;
    font-weight: 600;
    line-height: 1.4;
    padding-left: 15px;
    transition: opacity 0.5s ease;
    font-size: 0.95rem;
}

.card-body {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.services-list li {
    padding: 15px 20px;
    background: var(--background);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-icon {
    background: rgba(151, 188, 98, 0.15);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-text {
    display: flex;
    flex-direction: column;
}

.service-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.3;
}

.services-list li:hover {
    transform: translateY(-2px);
    background: var(--surface);
    border-color: var(--primary-light);
    box-shadow: 0 5px 15px rgba(151, 188, 98, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.benefit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 20px rgba(212, 185, 150, 0.15);
}

.benefit-icon {
    background: rgba(212, 185, 150, 0.2);
    color: var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 5px;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

.actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 10px;
}

.btn {
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: #25D366; 
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: var(--surface);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--surface);
}

.sidebar-footer {
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
}

.desktop-only { display: none; }
.mobile-only { display: block; }

/* Responsive Desktop Layout */
@media (min-width: 800px) {
    .card-container {
        flex-direction: row;
        min-height: 600px;
    }

    .card-sidebar {
        width: 35%;
        border-bottom: none;
        border-right: 1px solid var(--border);
        justify-content: center;
    }

    .card-body {
        width: 65%;
        padding: 50px;
        justify-content: center;
    }

    .services-list {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .actions {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-only { display: block; margin-top: auto; padding-top: 30px; }
    .mobile-only { display: none; }
    
    .profile-image-container {
        width: 180px;
        height: 180px;
    }
}
