/* Increased specificity with 'body' prefix to override theme defaults */
body .care-full {
    background-color: transparent !important;
    width: 100% !important;
    min-height: 100vh !important;
    padding: 40px 20px !important; /* Reduced from 80px */
    box-sizing: border-box !important;
}

body .care-container {
    max-width: 480px !important; /* Reduced from 600px to make it more compact */
    margin: auto !important;
    display: block !important;
}

/* Typography Overrides - Sizes Reduced */
body .serif-title {
    font-family: 'Georgia', 'Times New Roman', serif !important;
    color: #fff !important;
    font-size: 28px !important; /* Reduced from 42px */
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    text-align: center !important;
}
body .step-text {
    color: #fff !important;
    font-size: 14px !important; /* Slightly smaller */
}
body .subtitle {
    color: #fff !important;
    font-size: 15px !important; /* Reduced from 18px */
    margin-bottom: 20px !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

body .instruction {
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 15px !important;
    font-size: 16px !important; /* Reduced from 18px */
    text-align: center !important;
}

/* Nav & Progress */
body .care-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 30px !important; /* Reduced from 50px */
}

body #backBtn {
    background: none !important;
    border: none !important;
    color: #aa81a3 !important;
    font-weight: bold !important;
    cursor: pointer !important;
    font-size: 14px !important; /* Reduced from 16px */
}

body .progress-bar {
    height: 5px !important; /* Slightly thinner */
    background: #f0f0f0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    margin-bottom: 10px !important;
}

body .progress-bar span {
    display: block !important;
    height: 100% !important;
    background: #aa81a3 !important;
    transition: width 0.4s ease !important;
}

/* Step Layouts */
body .step { display: none !important; }
body .step.active { display: block !important; }

/* Buttons & Specific Hover State - Sizes Reduced */
body .options-vertical button {
    display: block !important;
    width: 100% !important;
    padding: 12px 24px !important; /* Reduced padding from 18px 30px */
    margin-bottom: 10px !important; /* Reduced margin */
    border-radius: 50px !important;
    border: 1px solid #aa81a3 !important;
    background: #aa81a3 !important;
    color: #fff !important;
    font-size: 16px !important; /* Reduced from 18px */
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease-in-out !important;
}

body .options-vertical button:hover {
    background: #ffffff !important;
    color: #aa81a3 !important;
    border: 1px solid #aa81a3 !important;
}

/* Form Inputs - Sizes Reduced */
body .input-stack input {
    width: 100% !important;
    padding: 12px !important; /* Reduced from 18px */
    border-radius: 10px !important;
    border: 1px solid #aa81a3 !important;
    background: #fff !important;
    margin-bottom: 10px !important;
    font-size: 14px !important; /* Reduced from 16px */
    box-sizing: border-box !important;
}

/* Submit Button & Hover - Sizes Reduced */
body .submit-btn {
    background: #aa81a3 !important;
    border: 1px solid #aa81a3 !important;
    color: #fff !important;
    padding: 15px 30px !important; /* Reduced from 20px 40px */
    border-radius: 50px !important;
    font-size: 16px !important; /* Reduced from 18px */
    cursor: pointer !important;
    font-weight: bold !important;
    margin-top: 5px !important;
    width: 100% !important;
    transition: all 0.2s ease-in-out !important;
}

body .submit-btn:hover {
    background: #ffffff !important;
    color: #aa81a3 !important;
    border: 1px solid #aa81a3 !important;
}

/* Success State */
body .care-success {
    display: none !important;
    flex-direction: column !important;
    text-align: center !important;
    padding: 30px 0 !important;
}

body .success-badge {
    width: 60px !important; /* Reduced from 70px */
    height: 60px !important;
    background: #aa81a3 !important;
    color: white !important;
    border-radius: 50% !important;
    font-size: 30px !important;
    line-height: 60px !important;
    margin: 0 auto 20px !important;
}

/* Remove side content explicitly */
body .care-right {
    display: none !important;
}

/* SUBMISSION CLASSES */
body .form-hidden {
    display: none !important;
}

body .care-success.show-success {
    display: flex !important;
}

@media (max-width: 767px){
	body .submit-btn {
		font-size: 10px !important; /* Reduced from 18px */
		padding: 15px 15px !important;

	}

}