:root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --accent: #4cc9f0;
    --success: #4ade80;
    --light: #f8f9fa;
    --dark: #212529;
    --gradient-start: #4361ee;
    --gradient-end: #3a0ca3;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: #f9f9ff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.navbar {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--gradient-start);
    display: flex;
    align-items: center;
}

.navbar-brand span {
    color: var(--gradient-end);
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: var(--dark);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active link styling */
.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.btn {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    background: #f1f3f9;
    border-radius: 50px;
    padding: 0.3rem;
    display: flex;
}

.lang-option {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option.active {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6e9ff 100%);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

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

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    height: auto;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: left;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 1.5rem 0 0;
    font-size: 1.1rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(58, 12, 163, 0.1));
    border-radius: 15px;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.platform-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.platform-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
}

.platform-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.platform-card p {
    color: #777;
    font-size: 0.9rem;
}

.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tiktok { background: linear-gradient(45deg, #ff0050, #fe0056, #ff0050); }
.youtube { background: linear-gradient(45deg, #ff0000, #cc0000); }
.threads { background: linear-gradient(45deg, #000000, #000000); }
.twitter { background: linear-gradient(45deg, #1da1f2, #1da1f2); }
.twitch { background: linear-gradient(45deg, #9146ff, #9146ff); }
.gmb { background: linear-gradient(45deg, #4285f4, #4285f4); }
.bluesky { background: linear-gradient(45deg, #0085ff, #0085ff); }
.facebook { background: linear-gradient(45deg, #1877f2, #1877f2); }
.pinterest { background: linear-gradient(45deg, #e60023, #e60023); }
.linkedin { background: linear-gradient(45deg, #0077b5, #0077b5); }

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 4rem 0;
    margin: 4rem 0;
}

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

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

/* Testimonials Section */
.testimonials {
    background: #f9f9ff;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 1.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(67, 97, 238, 0.1);
    line-height: 1;
}

.client {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

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

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid #e1e5ee;
    margin-bottom: 1.2rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

.footer-links a {
    display: block;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

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

.copyright {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Page Specific Styles */
.values-section {
    padding: 6rem 0;
    background: #f9f9ff;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(58, 12, 163, 0.1));
    border-radius: 15px;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.timeline-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6e9ff 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    z-index: 2;
}

.timeline-dot {
    position: absolute;
    left: 18px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-start);
    border: 3px solid white;
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
    z-index: 3;
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    border-left: 4px solid var(--gradient-start);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50px;
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.6rem;
}

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

.team-section {
    padding: 6rem 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 2rem;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 1.6rem;
}

.position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.team-social a {
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    color: var(--gradient-start);
    transform: translateY(-3px);
}

.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

.testimonials-section {
    padding: 6rem 0;
    background: #f9f9ff;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 1.5rem;
    position: relative;
    border-left: 4px solid var(--gradient-start);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.testimonial-quote {
    font-size: 4rem;
    color: rgba(67, 97, 238, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.client {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid var(--gradient-start);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client h5 {
    margin-bottom: 0.2rem;
    color: var(--dark);
}

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

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* Products Page Specific Styles */
.product-categories {
    padding: 6rem 0;
    background: #f9f9ff;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.category-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(58, 12, 163, 0.1));
    border-radius: 15px;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.category-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--dark);
    position: relative;
    z-index: 2;
}

.category-card p {
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.category-link:hover {
    color: var(--gradient-start);
    transform: translateX(5px);
}

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

.product-grid {
    padding: 6rem 0;
    background: white;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(58, 12, 163, 0.1));
    border-radius: 15px;
    margin-right: 1rem;
    font-size: 1.8rem;
    color: var(--primary);
}

.product-header h3 {
    margin-bottom: 0;
    color: var(--dark);
    font-size: 1.5rem;
}

.product-tag {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: auto;
}

.product-content {
    flex-grow: 1;
}

.product-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-features span {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
}

.product-features span i {
    color: var(--success);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6e9ff 100%);
}

.workflow-step {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    z-index: 1;
}

.workflow-step:hover::before {
    transform: scaleY(1);
}

.workflow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.workflow-step h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.workflow-step p {
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Integrations Page Specific Styles */
.integration-overview {
    padding: 6rem 0;
    background: #f9f9ff;
}

.integration-features {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item {
    display: flex;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(58, 12, 163, 0.1));
    border-radius: 15px;
    margin-right: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-content h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.5rem;
}

.feature-content p {
    color: #666;
    line-height: 1.7;
}

.integration-status {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: black; /* Changed from white to black */
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
}

.integration-status h3 {
    color: black; /* Changed from white to black */
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.status-item {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.status-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
}

.status-text {
    color: black; /* Changed from white to black */
}

.status-text span {
    font-weight: 600;
    font-size: 1.2rem;
}

.status-text small {
    opacity: 0.8;
    font-size: 0.9rem;
}

.integration-ecosystem {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6e9ff 100%);
}

.ecosystem-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.ecosystem-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(58, 12, 163, 0.1));
    border-radius: 15px;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.ecosystem-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--dark);
    position: relative;
    z-index: 2;
}

.ecosystem-card p {
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.integration-api {
    padding: 6rem 0;
    background: white;
}

.api-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.api-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.api-card h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: 1.8rem;
}

.api-features {
    margin-bottom: 2rem;
}

.api-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(67, 97, 238, 0.05);
    border-radius: 15px;
}

.api-feature i {
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.api-feature span {
    color: #666;
}

.api-events {
    margin-bottom: 2rem;
}

.api-event {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(67, 97, 238, 0.05);
    border-radius: 15px;
}

.api-event h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 1.2rem;
}

.api-event p {
    color: #666;
    margin-bottom: 0;
}

.integration-status {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6e9ff 100%);
}

.status-dashboard {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.status-row {
    display: flex;
    margin-bottom: 2rem;
}

.status-column {
    flex: 1;
    margin-right: 2rem;
}

.status-column:last-child {
    margin-right: 0;
}

.status-group {
    margin-bottom: 2rem;
}

.status-group h4 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid rgba(67, 97, 238, 0.1);
    padding-bottom: 0.5rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 15px;
    background: rgba(67, 97, 238, 0.05);
    transition: all 0.3s ease;
}

.status-item:hover {
    transform: translateX(5px);
}

.status-name {
    color: var(--dark);
    font-weight: 600;
}

.status-indicator {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-good {
    background: rgba(74, 222, 128, 0.2);
    color: #16a34a;
}

.status-warning {
    background: rgba(251, 191, 36, 0.2);
    color: #d97706;
}

.status-error {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.status-pending {
    background: rgba(147, 51, 234, 0.2);
    color: #7c3aed;
}

.status-footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Contact Page Specific Styles */
.faq-section {
    padding: 6rem 0;
    background: #f9f9ff;
}

.contact-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 10px;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Contact Page CAPTCHA Styles */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.captcha-code {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.3rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    user-select: none;
}

#refresh-captcha {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#refresh-captcha:hover {
    background: var(--secondary);
}

/* Map Cards for Contact Page */
.map-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.map-header {
    padding: 1.5rem;
    background: var(--primary);
    color: white;
}

.map-header h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.map-header p {
    margin: 0;
    opacity: 0.9;
}

.map-container {
    height: 300px;
}

.map-container iframe {
    height: 100%;
}

/* Countries List for Contact Page */
.countries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.countries-list span {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section for Contact Page */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 4rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p.lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* Privacy Policy Page Specific Styles */
.privacy-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.privacy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gradient-start);
    color: var(--dark);
}

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

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

.privacy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

.privacy-content a:hover {
    color: var(--gradient-start);
    text-decoration: underline;
}

.privacy-content pre {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid #e9ecef;
}

.privacy-content code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

/* Data Deletion Page Specific Styles */
.deletion-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.deletion-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gradient-start);
    color: var(--dark);
}

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

.deletion-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.deletion-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.deletion-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

.deletion-content a:hover {
    color: var(--gradient-start);
    text-decoration: underline;
}

.deletion-content pre {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid #e9ecef;
}

.deletion-content code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.request-methods {
    margin: 2rem 0;
}

.method {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--gradient-start);
}

.method h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.faq-section {
    margin: 2rem 0;
}

.faq-item {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--gradient-start);
}

.faq-item h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .status-column {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-title h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .status-row {
        flex-direction: column;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .captcha-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .captcha-code {
        margin-bottom: 0.5rem;
    }

/* Terms of Service Page Specific Styles */
.terms-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.terms-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gradient-start);
    color: var(--dark);
}

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

.terms-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.terms-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

.terms-content a:hover {
    color: var(--gradient-start);
    text-decoration: underline;
}

}