:root {
    --primary-color: #6B46C1;
    --secondary-color: #4A5568;
    --background-color: #ffffff;
    --text-color: #2D3748;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo img {
    height: 80px;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

header {
    padding: 6rem 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    animation: floatTitle 3s ease-in-out infinite;
}

@keyframes floatTitle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.hero h1:hover {
    animation: none;
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.cta-button:hover {
    background-color: #553C9A;
    animation: none;
    transform: translateY(-3px);
}

.video-section {
    padding: 4rem 5%;
    text-align: center;
}

.video-container {
    max-width: 600px;
    margin: 2rem auto;
}

.video-container video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.features {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.showcase {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.showcase h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.showcase-intro {
    text-align: justify;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 0 20px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.showcase-item.center-item {
    margin: 0 auto;
    max-width: 500px;  /* Or whatever width you prefer */
    grid-column: 1 / -1;  /* Makes it span full width */
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8f9fa;
}

.showcase-content {
    padding: 1.5rem;
}

.showcase-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.view-label {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: normal;
}

.showcase-content p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.client-review {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.client-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-content {
    flex: 1;
}

.client-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.review-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--secondary-color);
    line-height: 1.4;
}

footer {
    background-color: #2D3748;
    color: #fff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section p {
    color: #CBD5E0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #CBD5E0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #CBD5E0;
}

.contact-info li i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #4A5568;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #CBD5E0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #CBD5E0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 1001;
    overflow: hidden;
}

.chat-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), #553C9A);
    color: white;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header h3::before {
    content: '🤖';
    font-size: 1.4rem;
}

#closeChatBtn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

#closeChatBtn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 15px;
    max-width: 85%;
    position: relative;
    animation: messageSlide 0.3s ease-out;
}

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

.message.user {
    background: var(--primary-color);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.message.bot {
    background: white;
    color: var(--text-color);
    border-bottom-left-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.chat-input {
    padding: 20px;
    border-top: 1px solid #eee;
    background: white;
    display: none;
}

.chat-input input {
    flex-grow: 1;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 25px;
    margin-right: 10px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.chat-input button {
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chat-input button:hover {
    background-color: #553C9A;
}

.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color), #553C9A);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1001;
}

.chat-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.4);
}

@keyframes floatButton {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.chat-toggle {
    animation: floatButton 3s ease-in-out infinite;
}

.chat-toggle:hover {
    animation: none;
    transform: translateY(-2px);
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 12px 16px;
    background: white;
    border-radius: 15px;
    width: fit-content;
    margin-bottom: 15px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: typingBounce 1s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

.toggle-showcase-btn {
    display: block;
    margin: 0 auto 2rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-showcase-btn:hover {
    background-color: #553C9A;
    transform: translateY(-2px);
}

.showcase-grid.hidden {
    display: none;
}

.showcase-grid {
    animation: fadeIn 0.5s ease-in;
}

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

/* Pricing Section Styles */
.pricing {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.pricing-left {
    flex: 1;
    padding-right: 2rem;
    border-right: 1px solid #eee;
}

.pricing-right {
    flex: 1;
    padding-top: 2rem;
}

.pricing-note {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.4;
}

.pricing-guarantee {
    background: rgba(107, 70, 193, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 3px solid var(--primary-color);
}

.pricing-guarantee p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-features {
    max-width: 400px;
    margin: 0 auto;
}

.features-list {
    margin-top: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.price .period {
    color: var(--secondary-color);
    font-size: 1rem;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pricing-cta:hover {
    background-color: #553C9A;
}

.pricing-footer {
    margin-top: 2rem;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.additional-features {
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.features-list p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.quote-btn {
    background-color: #2D3748;
    width: 100%;
}

.quote-btn:hover {
    background-color: #1A202C;
}

/* Update existing pricing styles */
.pricing-intro {
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.pricing-features {
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
}

/* Remove these classes as they're no longer needed */
.pricing-grid.two-columns {
    grid-template-columns: 1fr;
    max-width: 500px;
}

@media (max-width: 768px) {
    .pricing-grid.two-columns {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.chat-option-btn {
    padding: 10px 20px;
    margin: 5px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.chat-option-btn:hover {
    background: #553C9A;
    transform: translateY(-2px);
}

.contact-form {
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.contact-form .submit-btn {
    padding: 8px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .submit-btn:hover {
    background-color: #553C9A;
}

.form-buttons {
    display: flex;
    gap: 10px;
}

.form-buttons button {
    flex: 1;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cancel-btn {
    background: #718096;
    color: white;
}

.cancel-btn:hover {
    background: #4A5568;
}

/* Add these styles after the existing pricing styles */
.custom-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.custom-quote .pricing-features li {
    color: var(--secondary-color);
    position: relative;
    padding-left: 25px;
}

.quote-btn {
    background-color: #2D3748;
}

.quote-btn:hover {
    background-color: #1A202C;
}

/* Update pricing styles */
.pricing-header p {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1rem;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
}

/* Remove or update existing styles */
.pricing-card {
    transform: none;
}

.pricing-cta {
    background-color: #2D3748;
}

.pricing-cta:hover {
    background-color: #1A202C;
}

.features-list {
    margin-top: 2rem;
}

.features-list p {
    font-size: 1.1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .pricing-content {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 2rem;
    }

    .pricing-right {
        padding-top: 0;
    }

    .pricing-grid {
        max-width: 500px;
    }
}

/* Differentiators Section Styles */
.differentiators {
    padding: 4rem 5%;
    background-color: white;
}

.differentiators h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.diff-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.diff-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.diff-icon {
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diff-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(107, 70, 193, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.diff-item:hover .diff-icon i {
    transform: scale(1.1);
}

.diff-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.diff-item p {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .differentiators {
        padding: 3rem 5%;
    }
    
    .diff-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .diff-item {
        padding: 1.5rem;
    }
}

/* Update questionnaire styles */
.questionnaire-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.questionnaire-popup {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Add smooth scrollbar for questionnaire */
.questionnaire-popup {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

.questionnaire-popup::-webkit-scrollbar {
    width: 8px;
}

.questionnaire-popup::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.questionnaire-popup::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.close-questionnaire {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

.questionnaire-popup h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.question {
    margin-bottom: 1.5rem;
}

.question label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.question input[type="text"],
.question input[type="email"],
.question input[type="tel"],
.question input[type="date"],
.question select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.submit-quote {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.submit-quote:hover {
    background-color: #553C9A;
}

@media (max-width: 768px) {
    .questionnaire-popup {
        padding: 1.5rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Add these styles to your existing questionnaire styles */

.other-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.other-feature input[type="text"] {
    flex: 1;
    margin-bottom: 0;
}

.other-feature input[type="text"]:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.checkbox-group .other-feature {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .other-feature {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .other-feature input[type="text"] {
        width: 100%;
    }
}

/* Add these styles to your existing questionnaire styles */

.budget-input {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 12px;
    color: var(--secondary-color);
    font-weight: 500;
}

.budget-input input[type="number"] {
    width: 100%;
    padding: 0.8rem;
    padding-left: 25px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.budget-input input[type="number"]::-webkit-inner-spin-button,
.budget-input input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.budget-input input[type="number"] {
    appearance: textfield;
}

.budget-note {
    position: absolute;
    right: 12px;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.budget-hint {
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.budget-input input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(107, 70, 193, 0.1);
}

.leave-message-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 8px;
}

.leave-message-btn:hover {
    background-color: #0056b3;
}

/* Add these styles for the terms page */
.terms-page main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.terms-page section {
    margin-bottom: 30px;
}

.terms-page h2 {
    color: #333;
    margin-bottom: 10px;
}

.terms-page p {
    line-height: 1.6;
    color: #666;
}
