/* Container styles */
.cc-calculator-wrapper {
    width: 80%;
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Questions container */
.cc-questions-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Progress bar */
.cc-progress {
    margin-bottom: 1rem;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.cc-progress-bar {
    height: 8px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.cc-progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Question and Phone Input styles */
.cc-question,
.cc-phone-section {
    display: none;
    margin-bottom: 1rem;
}

.cc-question.active,
.cc-phone-section {
    display: block;
    animation: fadeIn 0.3s ease;
}

.cc-question label,
.cc-phone-section label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    white-space: pre-line; /* Preserve line breaks */
}

/* Input styles */
.cc-question input[type="number"],
.cc-question input[type="tel"],
.cc-question select,
.cc-phone-section input[type="tel"] {
    width: 100%;
    max-width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    -moz-appearance: textfield;
    background-color: #fff;
}

/* Remove spinner buttons */
.cc-question input[type="number"]::-webkit-outer-spin-button,
.cc-question input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Focus states */
.cc-question input[type="number"]:focus,
.cc-question input[type="tel"]:focus,
.cc-question select:focus,
.cc-phone-section input[type="tel"]:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Radio buttons */
.cc-radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cc-radio-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.cc-radio-option:hover {
    background: #f9f9f9;
}

.cc-radio-option input[type="radio"] {
    margin-right: 1rem;
}

.cc-radio-option.selected {
    border-color: #4CAF50;
    background: #f0f7f0;
}

/* Navigation buttons */
.cc-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    gap: 1rem;
}

.cc-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.cc-btn-prev {
    background: #f0f0f0;
    color: #666;
}

.cc-btn-next,
.cc-btn-submit {
    background: #4CAF50;
    color: white;
}

.cc-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cc-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Split cost display sections */
.cc-cost-preview-section,
.cc-cost-breakdown-section {
    text-align: center;
    margin: 2rem 0;
}

.cc-cost-preview-section {
    margin-bottom: 1rem;
}

.cc-cost-breakdown-section {
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Style for preview container */
.cc-cost-preview {
    animation: fadeIn 0.5s ease;
}

/* Style for total preview */
.cc-total-preview {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #4CAF50, #45a049);
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
    position: relative;
}

.cc-total-preview h2 {
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.cc-total-amount {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Style for breakdown container */
.cc-cost-breakdown {
    background: #f9f9f9;
    border-radius: 4px;
    animation: fadeIn 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cc-total-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .cc-total-amount {
        font-size: 2rem;
    }
    
    .cc-total-preview {
        padding: 1.5rem;
    }
}

/* Success message */
.cc-success-message {
    text-align: center;
    padding: 2rem;
    background: #f0f7f0;
    border-radius: 4px;
    color: #2e7d32;
    animation: fadeIn 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .cc-calculator-wrapper {
        width: 90%;
        padding: 1rem;
        margin: 1rem;
        border-radius: 4px;
    }
    
    .cc-questions-container {
        padding: 0;
    }
    
    .cc-navigation {
        flex-direction: column;
    }
    
    .cc-btn {
        width: 100%;
        min-width: auto;
    }
    
    .cc-cost-table {
        font-size: 0.9em;
    }
    
    .cc-cost-label,
    .cc-cost-value {
        padding: 8px 10px;
    }
    
    .cc-summary-section {
        margin-bottom: 1rem;
    }
    
    .cc-summary-section h3 {
        font-size: 1.1em;
        margin-bottom: 0.8rem;
    }
}

/* Small screens */
@media (max-width: 480px) {
    .cc-calculator-wrapper {
        margin: 0.5rem;
        padding: 0.8rem;
    }
    
    .cc-cost-table {
        font-size: 0.85em;
    }
    
    .cc-cost-label,
    .cc-cost-value {
        padding: 6px 8px;
    }
    
    .cc-question label,
    .cc-phone-section label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .cc-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .cc-summary-section {
        margin-bottom: 0.8rem;
    }
    
    .cc-summary-section h3 {
        font-size: 1em;
        margin-bottom: 0.5rem;
        padding-bottom: 0.3rem;
    }
    
    .cc-radio-option {
        padding: 0.6rem;
        font-size: 0.9em;
    }
}

/* Add these styles to frontend.css */
.cc-cost-table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cc-cost-row {
    border-bottom: 1px solid #eee;
}

.cc-cost-row:last-child {
    border-bottom: none;
}

.cc-cost-label,
.cc-cost-value {
    padding: 12px 15px;
    color: #333;
}

.cc-cost-value {
    text-align: right;
    font-family: monospace;
    font-size: 1.1em;
}

.cc-total-row {
    background: #f8f8f8;
    font-weight: bold;
}

.cc-total-row .cc-cost-value {
    color: #4CAF50;
    font-size: 1.2em;
}

/* Add these styles to your existing frontend.css */
.cc-summary-section {
    margin-bottom: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.cc-summary-section:last-child {
    margin-bottom: 0;
}

.cc-summary-section h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
    color: #333;
}

.cc-summary-section.blurred {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}

/* Blurred content styles */
.cc-blurred-content {
    user-select: none;
    position: relative;
}

/* Call to action button */
.cc-btn-reveal {
    background: #ff5722;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.2);
    width: 100%;
}

.cc-btn-reveal:hover {
    background: #f4511e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
}

/* Phone input section enhancement */
.cc-phone-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
    border: 2px solid #4CAF50;
    transition: all 0.3s ease;
    animation: pulseGlow 2s infinite;
}

.cc-phone-section label {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.cc-phone-section input[type="tel"],
.cc-phone-section input[type="text"] {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cc-phone-section input[type="tel"]:focus,
.cc-phone-section input[type="text"]:focus {
    transform: scale(1.02);
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
    outline: none;
}

/* Add pulsing animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 2px 10px rgba(76, 175, 80, 0.1);
    }
    50% {
        box-shadow: 0 2px 20px rgba(76, 175, 80, 0.3);
    }
    100% {
        box-shadow: 0 2px 10px rgba(76, 175, 80, 0.1);
    }
}

.cc-phone-section input[type="tel"] {
    transition: all 0.3s ease;
}

.cc-phone-section input[type="tel"]:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cc-total-amount {
        font-size: 2.5rem;
    }
    
    .cc-btn-reveal {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cc-total-amount {
        font-size: 2rem;
    }
    
    .cc-total-preview {
        padding: 1.5rem;
    }
}

/* Add these to your existing input styles */
.cc-question input[type="text"],
.cc-question textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background-color: #fff;
}

.cc-question textarea {
    min-height: 100px;
    resize: vertical;
}

/* Focus states */
.cc-question input[type="text"]:focus,
.cc-question textarea:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Admin panel textarea styles */
.wp-admin textarea#question_text {
    min-height: 80px;
    resize: vertical;
    font-size: 14px;
    line-height: 1.5;
}

.wp-admin textarea#question_text:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: 2px solid transparent;
}

/* Add these styles for the CTA overlay */
.cc-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center; /* Center by default for large screens */
    justify-content: center;
    z-index: 2;
}

.cc-cta-text {
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    max-width: 80%;
    animation: fadeInScale 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cc-cta-text h3 {
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    color: #4CAF50;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cc-cta-text p {
    font-size: 1.2rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cc-cta-icon {
    color: #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cc-cta-text {
        padding: 1.5rem;
    }
    
    .cc-cta-text h3 {
        font-size: 1.5rem;
    }
    
    .cc-cta-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cc-cta-text {
        padding: 1rem;
        max-width: 90%;
    }
    
    .cc-cta-text h3 {
        font-size: 1.3rem;
    }
    
    .cc-cta-text p {
        font-size: 1rem;
    }
}

/* Add these styles for formula descriptions */
.cc-cost-description {
    font-size: 0.9em;
    color: #666;
    margin-top: 0.3rem;
    font-style: italic;
}

.cc-cost-label {
    padding: 12px 15px;
    line-height: 1.4;
}

/* Update responsive styles for mobile */
@media (max-width: 768px) {
    .cc-cost-preview-section,
    .cc-cost-breakdown-section {
        margin: 1rem 0;
    }
    
    .cc-total-preview {
        padding: 1.5rem;
    }
    
    .cc-total-amount {
        font-size: 2.2rem;
    }
    
    .cc-summary-section {
        margin-bottom: 0.8rem;
        padding: 0.8rem;
    }
    
    .cc-summary-section.blurred {
        filter: blur(3px);
    }
    
    .cc-cost-table {
        margin-bottom: 0.8rem;
    }
    
    .cc-cost-label,
    .cc-cost-value {
        padding: 10px 12px;
    }
    
    .cc-phone-section {
        padding: 1.2rem;
        margin: 0.8rem 0;
    }
    
    .cc-cta-text {
        padding: 1.5rem;
    }
    
    .cc-cta-text h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cc-cost-preview-section,
    .cc-cost-breakdown-section {
        margin: 0.8rem 0;
    }
    
    .cc-total-preview {
        padding: 1.2rem;
    }
    
    .cc-total-amount {
        font-size: 2rem;
    }
    
    .cc-summary-section {
        margin-bottom: 0;
        padding: 0.6rem;
    }
    
    .cc-summary-section.blurred {
        filter: blur(3px);
    }
    
    .cc-cost-table {
        margin-bottom: 0.6rem;
    }
    
    .cc-cost-label,
    .cc-cost-value {
        padding: 8px 10px;
        font-size: 0.9em;
    }
    
    .cc-phone-section {
        padding: 1rem;
        margin: 0.6rem 0;
    }
    
    .cc-cta-text {
        padding: 1.2rem;
    }
    
    .cc-cta-text h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .cc-cta-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .cc-cta-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* Add responsive adjustments for the overlay */
@media (max-width: 768px) {
    .cc-blur-overlay {
        align-items: flex-start; /* Align to top on medium screens */
        padding-top: 2rem; /* Add some top padding */
    }
    
    .cc-cta-text {
        max-width: 90%; /* Slightly wider on medium screens */
    }
}

@media (max-width: 480px) {
    .cc-blur-overlay {
        align-items: flex-start; /* Maintain top alignment on small screens */
        padding-top: 1rem; /* Less padding on small screens */
    }
    
    .cc-cta-text {
        max-width: 95%; /* Even wider on small screens */
        padding: 1.5rem; /* Reduce padding */
    }
    
    .cc-cta-text h3 {
        font-size: 1.4rem; /* Smaller heading on small screens */
    }
    
    .cc-cta-text p {
        font-size: 1rem; /* Smaller text on small screens */
    }
}

/* Add these styles for blurred total amount */
.cc-total-amount.blurred {
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
}

/* Less blur for mobile medium screens */
@media (max-width: 768px) {
    .cc-total-amount.blurred {
        filter: blur(6px);
    }
}


/* Add styles for the hint text */
.cc-total-hint {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.4;
}

/* Update responsive styles */
@media (max-width: 480px) {
    .cc-total-hint {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
}

/* Plugin Header */
.cc-plugin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cc-plugin-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
}

.cc-version {
    font-size: 0.9rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .cc-plugin-header h2 {
        font-size: 1.5rem;
    }
    
    .cc-version {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Powered by text */
.cc-powered-by {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cc-powered-by a {
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.cc-powered-by a:hover {
    opacity: 0.8;
}

.cc-powered-by-logo {
    width: 88px; /* Scaled down from 439px */
    height: 19px; /* Scaled down from 97px */
    object-fit: contain;
    vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .cc-powered-by {
        margin-top: 1rem;
        font-size: 0.8rem;
    }
    
    .cc-powered-by-logo {
        width: 66px; /* Even smaller on mobile */
        height: 15px;
    }
}

/* Privacy Notice */
.cc-privacy-notice {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cc-lock-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .cc-privacy-notice {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
}

/* Combobox styles */
.cc-combobox-wrapper {
    position: relative;
    width: 100%;
}

.cc-combobox-input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.cc-combobox-input:focus {
    border-color: #4CAF50;
    outline: none;
}

/* Style the datalist dropdown arrow */
.cc-combobox-input::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    cursor: pointer;
}

.cc-combobox-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Add these styles */
.cc-restart-section {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cc-btn-restart {
    background: #666;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cc-btn-restart:hover {
    background: #555;
    transform: translateY(-1px);
}

/* Update responsive styles */
@media (max-width: 480px) {
    .cc-restart-section {
        margin: 0.5rem 0;
        padding: 0.5rem 0;
    }
    
    .cc-btn-restart {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Add these styles */
.cc-remaining-submissions {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Add these styles */
.cc-question-description {
    margin: -0.5rem 0 1rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Update existing styles */
.cc-question label {
    margin-bottom: 0.5rem; /* Reduced from 1rem to accommodate description */
}

.cc-drop-off-rate {
    color: #d32f2f;
    font-weight: bold;
}

/* Advertisement section */
.cc-advertisement-section {
    margin: 0;
    padding: 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cc-advertisement-section img {
    max-width: 100%;
    height: auto;
}

/* Update spacing for surrounding sections */
.cc-cost-table {
    margin-bottom: 1rem;
}

.cc-answers-section {
    margin-top: 1rem;
}

/* Advertisement CTA styling */
.cc-project-cta {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    margin: 0;
}

.cc-project-cta h3 {
    color: #2c3338;
    font-size: 1.4rem;
    margin: 0 0 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.cc-project-cta-subtitle {
    color: #2c3338;
    font-size: 1rem;
    margin: 0 0 0.75rem;
    font-weight: 500;
    line-height: 1.4;
}

.cc-project-cta-description {
    color: #646970;
    font-size: 0.9rem;
    margin: 0 0 1rem;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cc-btn-outline {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 2px solid #4CAF50;
    border-radius: 4px;
    color: #4CAF50;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    min-width: 200px;
    max-width: 100%;
    box-sizing: border-box;
}

.cc-btn-outline:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .cc-project-cta {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .cc-project-cta h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .cc-project-cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .cc-project-cta-description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .cc-btn-outline {
        padding: 0.6rem 1rem;
        width: 90%;
        min-width: unset;
        margin: 0 auto;
    }
}

.wp-float-container{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.wp-float{
	margin-top:16px;
}

/* Updated privacy checkbox styles */
.cc-privacy-checkbox {
    padding: 0rem 1rem 1rem 2rem;
    margin: 0;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.cc-privacy-checkbox:hover {
    background: #f4f4f4;
    border-color: #4CAF50;
}

.cc-privacy-checkbox label {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #444;
    margin: 0;
    cursor: pointer;
}

.cc-privacy-checkbox input[type="checkbox"] {
    width: 1.2em;
    height: 1.2em;
    margin: 0;
    transform: scale(1.5);
    accent-color: #4CAF50;
    cursor: pointer;
}

.cc-privacy-checkbox input[type="checkbox"]:focus {
    outline: none;
}

.cc-privacy-checkbox input[type="checkbox"]::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #ccc;
    border-radius: 4px;
    background: white;
}

.cc-privacy-checkbox input[type="checkbox"]:checked::before {
    background: #4CAF50;
    border-color: #4CAF50;
}

.cc-privacy-checkbox input[type="checkbox"]:checked::after {
    content: "✓";
    display: block;
    position: absolute;
    color: white;
    left: 50%;
    top: 50%;
    transform: translate(-30%, -35%);
}

@media (max-width: 480px) {
    .cc-privacy-checkbox {
        padding: 0.3rem 1rem 1rem 1rem;
        margin: 0;
    }
    
    .cc-privacy-checkbox label {
        font-size: 0.75rem;
        gap: 1.5rem;
    }
    
    .cc-privacy-checkbox input[type="checkbox"] {
        transform: scale(1.3);
    }
}