/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 80px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #5c9aa9;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-start-saving {
    background-color: #5c9aa9;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-start-saving:hover {
    background-color: #4a8a9a;
    transform: translateY(-2px);
}

.btn-login {
    background-color: transparent;
    color: #333;
    padding: 12px 25px;
    border: 2px solid #333;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #333;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #5c9aa9 0%, #4a8a9a 100%);
    padding: 120px 0 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-subtext {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn-signup-free {
    background-color: white;
    color: #5c9aa9;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-signup-free:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #5c9aa9 0%, #4a8a9a 100%);
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.features-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.feature-card {
    background-color: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 25px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e8f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Investment Section */
.investment-section {
    padding: 100px 0;
    background-color: #e8f4f8;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.investment-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
    line-height: 1.3;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    padding: 12px 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.btn-getting-started {
    background-color: #5c9aa9;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-getting-started:hover {
    background-color: #4a8a9a;
    transform: translateY(-2px);
}

/* Collaboration Section */
.collaboration-section {
    padding: 100px 0;
    background-color: white;
}

.collaboration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.collaboration-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.collaboration-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-start-collaborating {
    background-color: #5c9aa9;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-start-collaborating:hover {
    background-color: #4a8a9a;
    transform: translateY(-2px);
}

/* How it Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #5c9aa9 0%, #4a8a9a 100%);
    color: white;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step p {
    opacity: 0.9;
    font-size: 1rem;
}

.step-arrow {
    font-size: 2rem;
    opacity: 0.7;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.faq-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.faq-icon {
    font-size: 1.5rem;
    color: #5c9aa9;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* App Download Section */
.app-download {
    padding: 100px 0;
    background-color: #2d2a54;
    color: white;
    text-align: center;
}

.app-download h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.app-download p {
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.download-btn img {
    height: 60px;
    transition: transform 0.3s ease;
}

.download-btn:hover img {
    transform: scale(1.05);
}

.download-note {
    font-size: 1rem;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.contact-form p {
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5c9aa9;
}

.btn-send-message {
    background-color: #5c9aa9;
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send-message:hover {
    background-color: #4a8a9a;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details span:first-child {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-details span:last-child {
    color: #666;
}

/* Footer */
.footer {
    background-color: #5c9aa9;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 20px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 140px;
    margin-bottom: 25px;
}

.footer-brand p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1rem;
}

.footer-links {
 
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

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

.footer-links a:hover {
  color: #2291a5;
}

.footer-column h3 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 1rem;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .investment-content,
    .collaboration-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .collaboration-content {
        grid-template-areas: 
            "text"
            "phone";
    }
    
    .collaboration-phone {
        grid-area: phone;
    }
    
    .collaboration-text {
        grid-area: text;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .features-section,
    .investment-section,
    .collaboration-section,
    .how-it-works,
    .faq-section,
    .app-download,
    .contact-section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Terms and Conditions Page Specific Styles */

/* Terms Header */
.terms-header {
    background: linear-gradient(135deg, #5c9aa9 0%, #4a8a9a 100%);
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.terms-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.terms-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Terms Content */
.terms-content {
    padding: 60px 0 80px;
    background-color: #f8f9fa;
}

.terms-section {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.terms-section h2 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5c9aa9;
}

.terms-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.terms-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.terms-list li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.terms-list li strong {
    color: #333;
    font-weight: 600;
}

.contact-info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #5c9aa9;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
}

.contact-info-box p {
    margin-bottom: 10px;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.active-link {
    font-weight: 700 !important;
    opacity: 1 !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .terms-header {
        padding: 100px 0 40px;
    }
    
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-content {
        padding: 40px 0 60px;
    }
    
    .terms-section {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .terms-header {
        padding: 90px 0 30px;
    }
    
    .terms-header h1 {
        font-size: 1.8rem;
    }
    
    .terms-section {
        padding: 20px 15px;
    }
    
    .terms-section h2 {
        font-size: 1.2rem;
    }
    
    .terms-list {
        padding-left: 20px;
    }
}