:root {
    --primary-color: #4A90E2;
    --secondary-color: #6CACE4;
    --gradient-start: #4A90E2;
    --gradient-middle: #6CACE4;
    --gradient-end: #89C4F4;
    --text-color: #333333;
    --light-text: #ffffff;
    --bg-light: #ffffff;
    --bg-dark: #f7f9fb;
    --calm-blue: #E6F2FF;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
}

.stats-grid {
    display: grid!important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))!important;
    gap: 2rem!important;
    max-width: 1000px!important;
    margin: 0 auto!important;
}
.fas.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
  
  .fas {
    transition: transform 0.3s ease;
  }
  
  .faq-item.active {
    background-color: #f8f9fa;
  }

  /* NoteGPT FAQ Styles */
.notegpt-faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f5f9ff;
    border-radius: 12px;
  }
  
  .notegpt-container {
    width: 100%;
  }
  
  .notegpt-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .notegpt-faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e8f5;
  }
  
  .notegpt-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .notegpt-faq-question h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: #333;
  }
  
  .notegpt-toggle-icon {
    position: relative;
    width: 16px;
    height: 16px;
  }
  
  .notegpt-toggle-icon:before,
  .notegpt-toggle-icon:after {
    content: '';
    position: absolute;
    background-color: #6d7b96;
    transition: transform 0.3s ease;
  }
  
  .notegpt-toggle-icon:before {
    width: 2px;
    height: 16px;
    top: 0;
    left: 7px;
  }
  
  .notegpt-toggle-icon:after {
    width: 16px;
    height: 2px;
    top: 7px;
    left: 0;
  }
  
  .notegpt-faq-item.active .notegpt-toggle-icon:before {
    transform: rotate(90deg);
  }
  
  .notegpt-faq-answer {
    padding: 0 20px;
    max-height: none;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .notegpt-faq-item.active .notegpt-faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
  }
  
  .notegpt-faq-answer p {
    margin: 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Hover effects */
  .notegpt-faq-question:hover {
    background-color: #f8faff;
  }
  
  .notegpt-faq-item.active .notegpt-faq-question {
    background-color: #f0f5ff;
}

/* Header Styles */
header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 101;
}

nav {
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-color);
        color: white!important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
    background: var(--gradient-middle);
}

.cta-button:hover::before {
    left: 100%;
}

.mobile-only {
    display: none;
}

.mobile-cta {
    display: inline-block;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    color: var(--light-text) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    text-align: center;
}

/* Hero Section - Enhanced */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 5%;
    background: var(--calm-blue);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: translateY(-5px);
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.05);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(108, 172, 228, 0.05);
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: #555;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.text-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.text-link:hover {
    color: var(--gradient-middle);
}

.text-link:hover i {
    transform: translateX(5px);
}

.floating-badge {
    position: absolute;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    z-index: 10;
}

.floating-badge.response-time {
    bottom: 30px;
    right: -20px;
    background: #fff;
}

.floating-badge i {
    color: var(--primary-color);
}

.floating-badge span {
    color: #555;
}

.floating-badge b {
    color: var(--primary-color);
}

/* Stats Banner */
.stats-banner {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Features Section - Enhanced */
.features-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    flex: 1;
}

.features-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.features-image:hover img {
    transform: translateY(-5px);
}

/* Platform Section - Enhanced */
.platform-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

/* Use Cases Section */
.use-cases-section {
    padding: 5rem 0;
    background: var(--calm-blue);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--calm-blue);
    color: var(--primary-color);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.use-case-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Workflow Section - Enhanced */
.workflow-image {
    margin-top: 3rem;
    text-align: center;
}

.workflow-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.workflow-image:hover img {
    transform: translateY(-5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

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

.testimonial-card {
    background: var(--calm-blue);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(74, 144, 226, 0.2);
    position: absolute;
    top: -15px;
    left: -10px;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-color);
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Pricing Comparison Section */
.pricing-comparison {
    padding: 5rem 0;
    background: var(--calm-blue);
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, 
.comparison-table td {
    padding: 1.2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    font-weight: 600;
    background: var(--primary-color);
    color: white;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table th:nth-child(2) {
    background: var(--gradient-middle);
}

.check-icon {
    color: #1cc88a;
    font-size: 1.2rem;
}

.times-icon {
    color: #e74a3b;
    font-size: 1.2rem;
}

/* Improved FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-grid {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    opacity: 0;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 1.5rem;
    line-height: 1.7;
    color: #666;
}

.faq-item.active .faq-question {
    background-color: var(--calm-blue);
}
:root {
    --primary-color: #4A90E2;
    --secondary-color: #6CACE4;
    --gradient-start: #4A90E2;
    --gradient-middle: #6CACE4;
    --gradient-end: #89C4F4;
    --text-color: #333333;
    --light-text: #ffffff;
    --bg-light: #ffffff;
    --bg-dark: #f7f9fb;
    --calm-blue: #E6F2FF;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 101;
}

nav {
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-color);
    color: white!important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
    background: var(--gradient-middle);
}

.cta-button:hover::before {
    left: 100%;
}

.mobile-only {
    display: none;
}

.mobile-cta {
    display: inline-block;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    color: var(--light-text) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    text-align: center;
}

/* Hero Section - Enhanced */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 5%;
    background: var(--calm-blue);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: translateY(-5px);
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.05);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(108, 172, 228, 0.05);
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: #555;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.text-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.text-link:hover {
    color: var(--gradient-middle);
}

.text-link:hover i {
    transform: translateX(5px);
}

.floating-badge {
    position: absolute;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    z-index: 10;
}

.floating-badge.response-time {
    bottom: 30px;
    right: -20px;
    background: #fff;
}

.floating-badge i {
    color: var(--primary-color);
}

.floating-badge span {
    color: #555;
}

.floating-badge b {
    color: var(--primary-color);
}

/* Stats Banner */
.stats-banner {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Features Section - Enhanced */
.features-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    flex: 1;
}

.features-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.features-image:hover img {
    transform: translateY(-5px);
}

/* Platform Section - Enhanced */
.platform-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

/* Use Cases Section */
.use-cases-section {
    padding: 5rem 0;
    background: var(--calm-blue);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--calm-blue);
    color: var(--primary-color);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.use-case-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Workflow Section - Enhanced */
.workflow-image {
    margin-top: 3rem;
    text-align: center;
}

.workflow-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.workflow-image:hover img {
    transform: translateY(-5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

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

.testimonial-card {
    background: var(--calm-blue);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(74, 144, 226, 0.2);
    position: absolute;
    top: -15px;
    left: -10px;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-color);
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Pricing Comparison Section */
.pricing-comparison {
    padding: 5rem 0;
    background: var(--calm-blue);
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, 
.comparison-table td {
    padding: 1.2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    font-weight: 600;
    background: var(--primary-color);
    color: white;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table th:nth-child(2) {
    background: var(--gradient-middle);
}

.check-icon {
    color: #1cc88a;
    font-size: 1.2rem;
}

.times-icon {
    color: #e74a3b;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.faq-item {
    background: var(--calm-blue);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(74, 144, 226, 0.08);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #555;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA Section - Enhanced */
.cta-section {
    padding: 5rem 0;
    background: var(--calm-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    max-width: 600px;
    padding: 0 2rem;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.cta-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cta-image:hover img {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .features-wrapper {
        flex-direction: column;
    }
    
    .features-image {
        margin-top: 2rem;
    }
    
    .cta-section {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .stats-grid {
        flex-wrap: wrap;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }
}

/* Common Section Styles */
.section-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

/* Updated Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.03);
    top: -250px;
    right: -250px;
    z-index: 0;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
}

.features-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-subtitle {
    font-size: 1.25rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.features-wrapper {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
}

.features-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 650px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-item:hover::after {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    margin-right: 2rem;
    position: relative;
    flex-shrink: 0;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper::after {
    transform: scale(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.ai-icon {
    background: linear-gradient(135deg, #6A11CB, #2575FC);
}

.analytics-icon {
    background: linear-gradient(135deg, #FF9500, #FF2D55);
}

.security-icon {
    background: linear-gradient(135deg, #36B37E, #00875A);
}

.integration-icon {
    background: linear-gradient(135deg, #0061FF, #60EFFF);
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.feature-content p {
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.feature-link {
    color: var(--gradient-start);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.feature-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(4px);
}

.features-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-mockup {
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.dashboard-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.floating-badge.top {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge.bottom {
    bottom: 10%;
    left: -20px;
    animation-delay: 2s;
}

.floating-badge i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
    color: var(--gradient-start);
}

.floating-badge span {
    font-size: 0.875rem;
}

.floating-badge b {
    color: var(--gradient-middle);
}

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

/* Responsive adjustments */
@media (max-width: 1200px) {
    .features-wrapper {
        flex-direction: column;
        gap: 4rem;
    }
    
    .features-grid {
        max-width: 800px;
        width: 100%;
    }
    
    .features-visual {
        order: -1;
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 4rem 1.5rem;
    }
    
    .features-header {
        margin-bottom: 3rem;
    }
    
    .features-header h2 {
        font-size: 2.25rem;
    }
    
    .feature-item {
        flex-direction: column;
        padding: 2rem;
    }
    
    .feature-icon-wrapper {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .floating-badge {
        padding: 0.75rem 1rem;
    }
    
    .floating-badge.top {
        top: 5%;
        right: -10px;
    }
    
    .floating-badge.bottom {
        bottom: 5%;
        left: -10px;
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
    background-color: var(--bg-dark);
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.pricing-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover::after {
    transform: scaleX(1);
}

.pricing-card.popular {
    border: none;
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 2rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.plan-period {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.plan-features li:before {
    content: "✓";
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Workflow Section */
.workflow-section {
    padding: 6rem 0;
    background: var(--calm-blue);
    position: relative;
    overflow: hidden;
}

.workflow-section::before,
.workflow-section::after {
    content: '';
    position: absolute;
    background-color: var(--bg-dark);
    border-radius: 50%;
    z-index: 0;
}

.workflow-section::before {
    width: 500px;
    height: 500px;
    top: -250px;
    left: -250px;
    opacity: 0.5;
}

.workflow-section::after {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
    opacity: 0.3;
}

.workflow-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.workflow-header {
    text-align: center;
    margin-bottom: 5rem;
}

.workflow-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.workflow-subtitle {
    font-size: 1.25rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.workflow-step {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    flex: 1;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(131, 58, 180, 0.1);
}

.workflow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(131, 58, 180, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(to right, rgba(131, 58, 180, 0.1), rgba(253, 29, 29, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 1.75rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-connector {
    height: 3px;
    flex: 0.1;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--calm-blue);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-shape.left {
    width: 500px;
    height: 500px;
    top: -250px;
    left: -150px;
}

.cta-shape.right {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -100px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.cta-button-primary {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(74, 144, 226, 0.4);
    background: var(--gradient-middle);
}

.cta-button-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button-secondary:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.cta-guarantees {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.guarantee-item i {
    color: rgba(255, 255, 255, 0.9);
}

/* Stats Section */
.stats-section {
    padding: 8rem 2rem;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-header {
    text-align: center;
    margin-bottom: 5rem;
}

.stats-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.05), rgba(108, 172, 228, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
    position: relative;
    z-index: 1;
}

.stat-description {
    color: #666;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 2rem;
    background-color: white;
    position: relative;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(131, 58, 180, 0.02);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: white;
    flex-shrink: 0;
    margin-left: 1.5rem;
    position: relative;
}

.faq-icon i {
    font-size: 0.875rem;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-icon .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: #555;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-icon .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon .fa-minus {
    opacity: 1;
    transform: rotate(0);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 2rem;
}

/* Simplified Footer */
footer {
    background: var(--calm-blue);
    padding-top: 5rem;
    position: relative;
    border-top: 1px solid black;
}

.footer-wave {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    background: url('https://dummyimage.com/1600x70/4A90E2/ffffff') no-repeat;
    background-size: cover;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-branding {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-links h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.copyright p {
    color: #666;
    margin: 0;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 1.5rem;
}

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

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-branding {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-branding {
        grid-column: span 1;
    }
    
    .footer-links-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 1rem;
    }
    
    .footer-bottom-links a {
        margin: 0 0.75rem;
    }
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-visual {
        order: -1;
    }
    
    .features-mockup {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-info {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-text {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 1100px) {
    .workflow-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .workflow-step {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .step-connector {
        height: 50px;
        width: 3px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav li {
        margin: 1.5rem 0;
    }
    
    nav a {
        font-size: 1.2rem;
    }
    
    header .cta-button {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .features-section, 
    .workflow-section, 
    .stats-section, 
    .faq-section {
        padding: 4rem 1.5rem;
    }
    
    .features-header h2, 
    .workflow-header h2, 
    .stats-header h2, 
    .faq-header h2 {
        font-size: 2.25rem;
    }
    
    .feature-item {
        flex-direction: column;
        padding: 2rem;
    }
    
    .feature-icon-wrapper {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .features-mockup {
        max-width: 100%;
    }
    
    .floating-badge {
        padding: 0.75rem 1rem;
    }
    
    .floating-badge.top {
        top: 5%;
        right: -10px;
    }
    
    .floating-badge.bottom {
        bottom: 5%;
        left: -10px;
    }
    
    .workflow-step {
        padding: 2rem;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1.5rem;
    }
    
    .step-icon {
        margin: 1.5rem auto 0;
    }
    
    .cta-section {
        padding: 6rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-guarantees {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
    }
}

 /* Login Styles */
.login-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 50%, #e2e8f0 100%);
}

.login-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    padding: 3rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}

.login-header p {
    color: #666;
    font-size: 1.1rem;
}

.login-alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.login-alert.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.login-alert.success {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.75rem;
}

.google-login:hover {
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #777;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.login-divider span {
    padding: 0 1rem;
    font-size: 0.9rem;
}

.login-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
}

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

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: #777;
}

.input-wrapper input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(131, 58, 180, 0.1);
    outline: none;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.forgot-password {
    color: var(--gradient-start);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-button:hover:not(:disabled) {
    background: linear-gradient(to right, var(--gradient-middle), var(--gradient-start));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(131, 58, 180, 0.3);
}

.login-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    margin-left: 10px;
}

.login-footer {
    text-align: center;
    color: #555;
}

.login-footer a {
    color: var(--gradient-start);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-container {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 576px) {
    .login-container {
        padding: 2rem 1.5rem;
    }
    
    .login-header h1 {
        font-size: 1.8rem;
    }
    
    .login-header p {
        font-size: 1rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}


/* About Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: white;
    padding: 8rem 2rem 6rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-hero .section-line {
    margin: 1.5rem auto;
    background: white;
}

.about-hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Mission Section */
.about-mission {
    padding: 6rem 0;
    background-color: white;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Story Timeline */
.about-story {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.about-story h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-timeline {
    margin-top: 4rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-middle));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    text-align: right;
    padding-right: 2.5rem;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-right: 0;
    padding-left: 2.5rem;
    margin-left: auto;
}

.timeline-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gradient-start);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

/* Team Section */
.about-team {
    padding: 6rem 0;
    background-color: white;
    text-align: center;
}

.about-team h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: #555;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: a.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--gradient-start);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(131, 58, 180, 0.1);
    color: var(--gradient-start);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: white;
    transform: translateY(-3px);
}

/* Values Section */
.about-values {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.about-values h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.value-item {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

/* CTA Section */
.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--text-color)!important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .team-grid, 
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .mission-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: none;
    }
    
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: auto;
        padding-left: 60px;
        padding-right: 0;
        margin-left: 0;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1.5rem 4rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .about-mission,
    .about-story,
    .about-team,
    .about-values,
    .about-cta {
        padding: 4rem 1.5rem;
    }
    
    .mission-text h2,
    .about-story h2,
    .about-team h2,
    .about-values h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .team-grid, 
    .values-grid {
        grid-template-columns: 1fr;
    }
}


/* Privacy Policy Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: white;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.privacy-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Privacy Content Layout */
.privacy-content {
    display: flex;
    padding: 4rem 0;
    background-color: var(--bg-dark);
}

.privacy-content .container {
    display: flex;
    gap: 4rem;
}

/* Sidebar Navigation */
.privacy-nav {
    flex: 0 0 250px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: var(--gradient-start);
}

.privacy-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-nav li {
    margin-bottom: 0.75rem;
}

.privacy-nav a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-nav a:hover {
    color: var(--gradient-start);
}

/* Main Content */
.privacy-text {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-section {
    margin-bottom: 3.5rem;
}

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

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
    padding-bottom: 0.75rem;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #444;
}

.privacy-section p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #555;
}

.privacy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #555;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--gradient-start);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: var(--gradient-start);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1000px) {
    .privacy-content .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .privacy-nav {
        flex: none;
        position: static;
        width: 100%;
    }
    
    .privacy-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .privacy-nav li {
        margin-bottom: 0;
    }
    
    .privacy-nav a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border: 1px solid #f0f0f0;
        border-radius: 50px;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 4rem 1.5rem 3rem;
    }
    
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .privacy-content {
        padding: 2.5rem 0;
    }
    
    .privacy-text {
        padding: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-nav ul {
        flex-direction: column;
    }
    
    .privacy-nav a {
        border-radius: 8px;
    }
}

/* Contact Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.required {
    color: #e74c3c;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: white;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Content */
.contact-content {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

/* Contact Info */
.contact-info {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #333;
}

.contact-info > p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.info-items {
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: white;
}

.info-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-text p {
    color: #555;
    line-height: 1.5;
}

.info-text a {
    color: var(--gradient-start);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--gradient-middle);
}

.info-detail {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.25rem;
}

.social-links h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(131, 58, 180, 0.1);
    color: var(--gradient-start);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.form-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.form-success,
.form-error {
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-success {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.form-error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.form-success i,
.form-error i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group:nth-child(3),
.form-group:nth-child(4) {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(131, 58, 180, 0.1);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    grid-column: 1 / -1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(to right, var(--gradient-middle), var(--gradient-start));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(131, 58, 180, 0.3);
}

/* Map Section */
.contact-map {
    height: 450px;
    position: relative;
}

.map-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.contact-faq {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.contact-faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.faq-item {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1000px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 1.5rem 3rem;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-content,
    .contact-faq {
        padding: 3rem 1.5rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 350px;
    }
}


/* Signup Styles */
.signup-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 50%, #e2e8f0 100%);
}

.signup-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    padding: 3rem;
}

.signup-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.signup-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}

.signup-header p {
    color: #666;
    font-size: 1.1rem;
}

.signup-alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.signup-alert.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.signup-alert.success {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.google-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.75rem;
}

.google-signup:hover {
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.signup-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #777;
}

.signup-divider::before,
.signup-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.signup-divider span {
    padding: 0 1rem;
    font-size: 0.9rem;
}

.signup-form {
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
}

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

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: #777;
}

.input-wrapper input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(131, 58, 180, 0.1);
    outline: none;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
}

.password-requirements {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #777;
}

.terms-group label {
    font-size: 0.95rem;
    color: #555;
}

.terms-group a {
    color: var(--gradient-start);
    text-decoration: none;
}

.terms-group a:hover {
    text-decoration: underline;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
}

.signup-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-button:hover:not(:disabled) {
    background: linear-gradient(to right, var(--gradient-middle), var(--gradient-start));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(131, 58, 180, 0.3);
}

.signup-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    margin-left: 10px;
}

.signup-footer {
    text-align: center;
    color: #555;
}

.signup-footer a {
    color: var(--gradient-start);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.signup-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .signup-container {
        padding: 2.5rem 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .signup-container {
        padding: 2rem 1.5rem;
    }
    
    .signup-header h1 {
        font-size: 1.8rem;
    }
    
    .signup-header p {
        font-size: 1rem;
    }

}


/* Dashboard Styles */
.dashboard-container {
    display: flex;
    min-height: calc(100vh - 80px);
    background-color: var(--bg-dark);
}

.settings-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-height: 120px;
    resize: vertical;
}

.settings-form textarea:focus {
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(131, 58, 180, 0.1);
    outline: none;
}

.field-hint {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin: 0 1.5rem 1.5rem;
    display: flex;
    align-items: center;
}

.alert i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.alert-success {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.alert-error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Sidebar */
.dashboard-sidebar {
    width: 300px;
    background-color: white;
    border-right: 1px solid #eee;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.sidebar-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.user-welcome h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.user-welcome p {
    color: #666;
    font-size: 0.9rem;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #333;
}

.settings-form .form-group {
    margin-bottom: 1.5rem;
}

.settings-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
    font-size: 0.95rem;
}

.settings-form input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.settings-form input[type="text"]:focus {
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(131, 58, 180, 0.1);
    outline: none;
}

/* Toggle Switch */
.toggle-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-status {
    font-size: 0.85rem;
    color: #666;
    margin-left: 1rem;
}

.save-settings-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-settings-btn:hover:not(:disabled) {
    background: linear-gradient(to right, var(--gradient-middle), var(--gradient-start));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(131, 58, 180, 0.3);
}

.save-settings-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    margin-left: 10px;
}

/* Main Content */
.dashboard-main {
    flex: 1;
    padding: 2rem;
}

.dashboard-section {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    overflow: hidden;
}

.section-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.section-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Instagram Connection */
.instagram-connection {
    padding: 2rem;
}

.connected-account {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.account-info {
    display: flex;
    align-items: center;
}

.profile-picture {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.profile-picture-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.account-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.connection-status {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.connection-status.connected {
    color: #27ae60;
}

.connection-status i {
    margin-right: 0.5rem;
}

.account-actions button {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.account-actions button i {
    margin-right: 0.5rem;
}

.account-actions button:hover {
    background-color: #f5f5f5;
    color: #e74c3c;
    border-color: #e74c3c;
}

.connect-instagram {
    text-align: center;
}

.connect-placeholder {
    position: relative;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.placeholder-content {
    position: relative;
    z-index: 1;
}

.placeholder-content i {
    font-size: 3rem;
    color: #833AB4;
    margin-bottom: 1.25rem;
}

.placeholder-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.placeholder-content p {
    color: #666;
    max-width: 400px;
    margin: 0 auto;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle));
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.connect-btn i {
    margin-right: 0.75rem;
}

.connect-btn:hover {
    background: linear-gradient(to right, var(--gradient-middle), var(--gradient-start));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(131, 58, 180, 0.3);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #555;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

/* Message Logs */
.message-logs {
    padding: 1.5rem;
}

.logs-table-container {
    overflow-x: auto;
}

.logs-table {
    width: 100%;
    border-collapse: collapse;
}

.logs-table th,
.logs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.logs-table th {
    font-weight: 600;
    color: #333;
    background-color: #f9f9f9;
}

.logs-table tr:hover {
    background-color: #f9f9f9;
}

.message-cell {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.view-all-logs {
    text-align: center;
    margin-top: 1.5rem;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    color: var(--gradient-start);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    color: var(--gradient-middle);
}

.view-all-link:hover i {
    transform: translateX(3px);
}

.no-logs {
    text-align: center;
    padding: 2rem 0;
}

.no-logs i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-logs p {
    color: #777;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.no-logs-sub {
    font-size: 0.9rem;
    color: #999;
    max-width: 400px;
    margin: 0 auto;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification.success {
    border-left: 4px solid #27ae60;
}

.notification.error {
    border-left: 4px solid #e74c3c;
}

.notification-icon {
    margin-right: 1rem;
    font-size: 1.25rem;
}

.notification.success .notification-icon {
    color: #27ae60;
}

.notification.error .notification-icon {
    color: #e74c3c;
}

.notification-message {
    flex: 1;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .dashboard-container {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-main {
        padding: 1.5rem;
    }
    
    .instagram-connection,
    .section-header,
    .message-logs {
        padding: 1rem;
    }
    
    .connected-account {
       flex-direction: column;
   }
   
   .account-info {
       margin-bottom: 1.5rem;
   }
   
   .logs-table th,
   .logs-table td {
       padding: 0.75rem;
   }
   
   .message-cell {
       max-width: 150px;
   }
}

@media (max-width: 576px) {
   .stats-grid {
       grid-template-columns: 1fr;
   }
   
   .stat-card {
       padding: 1rem;
   }
   
   .stat-icon {
       width: 40px;
       height: 40px;
       font-size: 1rem;
   }
   
   .stat-value {
       font-size: 1.25rem;
   }
   
   .notification {
       left: 20px;
       right: 20px;
   }
}


/* Instagram Connection Section */
.dashboard-section {
    margin-bottom: 30px;
}

.section-header {
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h3 i {
    color: #e1306c;
}

.connection-badge {
    display: flex;
    align-items: center;
    background-color: rgba(52, 199, 89, 0.1);
    color: #34c759;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    gap: 6px;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #34c759;
    position: relative;
}

.pulse-dot:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(52, 199, 89, 0.8);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    80%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.instagram-connection-wrapper {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.instagram-connection {
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
}

.connected-account {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.account-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-image-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-picture-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.account-details h4 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: #333;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6c757d;
}

.connection-status.connected {
    color: #34c759;
}

.account-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-button {
    background: none;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s;
}

.action-button:hover {
    background-color: #f8f9fa;
    color: #495057;
}

.action-button.auto-reply-toggle[data-enabled="true"] {
    color: #3897f0;
}

.disconnect-btn {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    color: #dc3545;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.disconnect-btn:hover {
    background-color: #fee2e2;
    border-color: #fca5a5;
}

/* Status Monitor */
.status-monitor {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.status-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.status-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}

.status-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.status-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: rgba(56, 151, 240, 0.1);
    color: #3897f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

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

.status-label {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 2px;
}

.status-value {
    font-size: 18px;
    font-weight: 600;
    color: #343a40;
}

/* Activity Monitor */
.activity-status {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.activity-header {
    background-color: #f1f3f5;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.activity-header h4 {
    margin: 0;
    font-size: 15px;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

.activity-header h4 i {
    color: #3897f0;
}

.activity-controls {
    display: flex;
    gap: 8px;
}

.control-button {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s;
}

.control-button:hover {
    background-color: rgba(108, 117, 125, 0.1);
    color: #495057;
}

.activity-feed {
    height: 200px;
    overflow-y: auto;
    padding: 12px 15px;
    background-color: #fff;
}

.activity-entry {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    color: #495057;
}

.activity-time {
    color: #6c757d;
    font-size: 12px;
    white-space: nowrap;
}

.activity-entry.system .activity-message {
    color: #3897f0;
}

.activity-entry.received .activity-message {
    color: #2ecc71;
}

.activity-entry.sent .activity-message {
    color: #f39c12;
}

.activity-footer {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f1f3f5;
    border-top: 1px solid #e9ecef;
    font-size: 12px;
    color: #6c757d;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #adb5bd;
}

.status-dot.active {
    background-color: #34c759;
}

.status-dot.paused {
    background-color: #f39c12;
}

.status-dot.error {
    background-color: #dc3545;
}

/* Connect Instagram Section */
.connect-instagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.connect-placeholder {
    margin-bottom: 25px;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.placeholder-content i {
    font-size: 48px;
    color: #e1306c;
}

.placeholder-content h4 {
    margin: 0;
    font-size: 20px;
    color: #343a40;
}

.placeholder-content p {
    margin: 0;
    color: #6c757d;
    max-width: 350px;
}

.connect-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(225, 48, 108, 0.3);
}

/* Terminal-style Message Log Box Styles */
.terminal-container {
  font-family: 'Consolas', 'Courier New', monospace;
  background-color: #0c0c0c;
  color: #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.terminal-header {
  background-color: #1a1a1a;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.terminal-title {
  font-weight: bold;
  font-size: 14px;
}

.terminal-controls button {
  background: none;
  border: none;
  color: #888;
  margin-left: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.2s;
}

.terminal-controls button:hover {
  color: #fff;
}

.terminal-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
  background-color: #0c0c0c;
}

#terminal-content {
  padding: 0 15px;
}

.log-entry {
  padding: 3px 0;
  line-height: 1.4;
  font-size: 13px;
  white-space: pre-wrap;
  word-break: break-word;
  animation: fadeIn 0.3s ease-out;
}

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

.timestamp {
  color: #888;
  margin-right: 6px;
}

.system-message {
  color: #64b5f6;
}

.received-message {
  color: #81c784;
}

.sent-message {
  color: #ffb74d;
}

.error-message {
  color: #e57373;
}

.terminal-footer {
  background-color: #1a1a1a;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  font-size: 12px;
  color: #888;
}

.status-indicator {
  display: flex;
  align-items: center;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background-color: #666;
}

.status-dot.active {
  background-color: #4caf50;
}

.status-dot.paused {
  background-color: #ff9800;
}

.status-dot.error {
  background-color: #f44336;
}

/* Auto-scrolling animation */
.terminal-body::-webkit-scrollbar {
  width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
  background: #1e1e1e;
}

.terminal-body::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Platform Section */
.platform-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.platform-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.03);
    top: -250px;
    left: -250px;
    z-index: 0;
}

.platform-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.platform-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.1);
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--calm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.platform-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.platform-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-card {
        padding: 2rem;
    }
    
    .platform-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}


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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease forwards;
    opacity: 0;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

/* Fixed FAQ Section */
.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer Redesign */
footer {
    background: var(--calm-blue);
    padding-top: 5rem;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    background: url('https://dummyimage.com/1600x70/4A90E2/ffffff') no-repeat;
    background-size: cover;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-branding {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-links h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.copyright p {
    color: #666;
    margin: 0;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 1.5rem;
}

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

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-branding {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-branding {
        grid-column: span 1;
    }
    
    .footer-links-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 1rem;
    }
    
    .footer-bottom-links a {
        margin: 0 0.75rem;
    }
}


/* Page Hero (used in Contact, About, etc.) */
.page-hero {
    background-color: var(--calm-blue);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.05);
    top: -250px;
    right: -150px;
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.07);
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    color: var(--text-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 4rem;
    margin: 5rem 0;
}

.form-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.form-card p {
    color: #666;
    margin-bottom: 2rem;
}

.form-success,
.form-error {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.form-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.form-error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.form-success i,
.form-error i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.submit-button:hover {
    background-color: #3a7bc0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.contact-info {
    padding: 2rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-info > p {
    color: #666;
    margin-bottom: 2.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--calm-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.info-text p {
    color: #666;
    margin: 0;
}

.info-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 5rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Privacy & Terms */
.privacy-wrapper {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin: 5rem 0;
}

.privacy-nav {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 2rem;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.privacy-nav li {
    margin-bottom: 0.75rem;
}

.privacy-nav a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
}

.privacy-nav a:hover,
.privacy-nav a.active {
    background-color: var(--calm-blue);
    color: var(--primary-color);
}

.privacy-text {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-section {
    margin-bottom: 4rem;
}

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

.privacy-section h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #edf2f7;
}

.privacy-section h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 2rem 0 1rem;
}

.privacy-section p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.privacy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* About Page Timeline */
.story-timeline {
    position: relative;
    margin: 4rem 0;
    padding: 0 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--calm-blue);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    position: relative;
    margin-bottom: 4rem;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 5px solid var(--calm-blue);
    z-index: 1;
}

.timeline-content {
    width: 45%;
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* Responsive styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .privacy-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .privacy-nav {
        position: static;
        margin-bottom: 2rem;
    }

    .story-timeline::before {
        left: 2rem;
    }

    .timeline-marker {
        left: 2rem;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 80%;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .form-card,
    .privacy-text {
        padding: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.25rem;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .info-item {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .privacy-nav {
        padding: 1.5rem;
    }

    .privacy-nav a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .story-timeline {
        padding: 0 1rem;
    }

    .story-timeline::before {
        left: 1rem;
    }

    .timeline-marker {
        left: 1rem;
        width: 20px;
        height: 20px;
    }
}









































































