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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
}

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

.nav-logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #e74c3c;
}

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

.nav-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a365d;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid #e5e7eb;
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-cta {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 6rem;
    background-color: #faf9f6;
}

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem;
        padding-top: 8rem;
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e74c3c;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a365d;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.cta-button:hover {
    background-color: #c0392b;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
    }
}

.journey {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: #e74c3c;
}

.journey-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

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

.journey-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.journey-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.journey-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.journey-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: white;
    opacity: 0.95;
}

.journey-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    opacity: 0.9;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: white;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-button-secondary:hover {
    background-color: #faf9f6;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .journey-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .journey-image {
        order: -1;
    }
    
    .journey-title {
        font-size: 2rem;
    }
    
    .journey-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .journey {
        padding: 3rem 1.5rem;
    }
    
    .journey-title {
        font-size: 1.75rem;
    }
    
    .journey-subtitle {
        font-size: 1.1rem;
    }
    
    .journey-description {
        font-size: 1rem;
    }
    
    .cta-button-secondary {
        width: 100%;
    }
}

.difference {
    padding: 3rem 2rem;
    background-color: #faf9f6;
}

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

.difference-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a365d;
    margin-bottom: 2rem;
}

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

.difference-card {
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bg-1 {
    background-color: #fff5e6;
}

.bg-2 {
    background-color: #ffe6e6;
}

.bg-3 {
    background-color: #e6f3ff;
}

.bg-4 {
    background-color: #e6ffe6;
}

.bg-5 {
    background-color: #fff0e6;
}

.bg-6 {
    background-color: #e6e6ff;
}

.bg-7 {
    background-color: #f0e6ff;
}

.card-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(44, 62, 80, 0.1);
}

.card-label-left {
    color: #c0392b;
}

.card-label-right {
    color: #27ae60;
}

.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.card-left {
    color: #4a5568;
}

.card-right {
    color: #1a365d;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .difference-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .difference {
        padding: 3rem 1.5rem;
    }
    
    .difference-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .difference-card {
        padding: 1.5rem;
    }
    
    .card-header {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .card-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-label-left {
        border-bottom: 1px solid rgba(44, 62, 80, 0.1);
        padding-bottom: 0.5rem;
    }
}

.potential {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: #e74c3c;
}

.potential-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.potential-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.potential-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.potential-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    opacity: 0.9;
}

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

.potential-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
}

@media (max-width: 1024px) {
    .potential-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .potential-image {
        order: -1;
    }
    
    .potential-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .potential {
        padding: 3rem 1.5rem;
    }
    
    .potential-title {
        font-size: 1.75rem;
    }
    
    .potential-description {
        font-size: 1rem;
    }
}

.benefits {
    padding: 3rem 2rem;
    background-color: #faf9f6;
}

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

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.benefits-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

.benefit-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #e74c3c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

a {
    text-decoration: none;
}

/* About Page Styles */
.about-hero {
    padding: 10rem 2rem 5rem;
    background-color: #faf9f6;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-hero-text {
    text-align: center;
}

.about-hero-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    line-height: 1.6;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

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

.about-story {
    padding: 5rem 2rem;
    background-color: white;
}

.about-story .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.about-section-title-centered {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 3rem;
}

.about-text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.about-values {
    padding: 5rem 2rem;
    background-color: #faf9f6;
}

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

.value-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.8rem;
    color: white;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
}

.value-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.about-approach {
    padding: 5rem 2rem;
    background-color: white;
}

.about-approach .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .about-story .about-container,
    .about-approach .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 1.5rem 3rem;
    }
    
    .about-hero-content {
        gap: 3rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-story {
        padding: 3rem 1.5rem;
    }
    
    .about-section-title,
    .about-section-title-centered {
        font-size: 2rem;
    }
    
    .about-text-content {
        font-size: 1rem;
    }
    
    .about-values {
        padding: 3rem 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .about-approach {
        padding: 3rem 1.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 10rem 2rem 3rem;
    background-color: #faf9f6;
    text-align: center;
}

.contact-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
}

.contact-form-section {
    padding: 5rem 2rem;
    background-color: white;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.contact-form .form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a365d;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-form .form-group textarea {
    resize: vertical;
}

.contact-submit-btn {
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #c0392b;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 1.5rem 2rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-section {
        padding: 3rem 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 10rem 2rem 5rem;
    background-color: #faf9f6;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.legal-content {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.legal-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section-title:first-of-type {
    margin-top: 0;
}

.legal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.legal-text strong {
    color: #1a365d;
    font-weight: 600;
}

.legal-list {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
    list-style: none;
}

.legal-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 8rem 1.5rem 3rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-section-title {
        font-size: 1.25rem;
    }
    
    .legal-text {
        font-size: 0.95rem;
    }
    
    .legal-list {
        margin-left: 1rem;
    }
    
    .legal-list li {
        font-size: 0.95rem;
        padding-left: 1.25rem;
    }
}

.benefit-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
}

.benefit-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 3rem 1.5rem;
    }
    
    .benefits-title {
        font-size: 1.75rem;
    }
    
    .benefits-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .benefit-card-title {
        font-size: 1.25rem;
    }
}

.trusted {
    padding: 3rem 2rem;
    background-color: white;
}

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

.trusted-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trusted-logo:hover {
    opacity: 1;
}

.trusted-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.trusted-logo:hover img {
    filter: grayscale(0%);
}

@media (max-width: 1024px) {
    .trusted-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .trusted {
        padding: 3rem 1.5rem;
    }
    
    .trusted-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trusted-logo img {
        max-height: 50px;
    }
}

.solutions {
    padding: 3rem 2rem;
    background-color: #faf9f6;
}

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

.solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.solutions-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem;
}

.solutions-subtitle {
    font-size: 1rem;
    text-align: center;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.solution-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 1rem;
}

.solution-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.solution-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
    line-height: 1.3;
}

.solution-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .solutions {
        padding: 3rem 1.5rem;
    }
    
    .solutions-title {
        font-size: 1.75rem;
    }
    
    .solutions-intro {
        font-size: 1rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card-title {
        font-size: 1.1rem;
    }
    
    .solution-card-text {
        font-size: 0.9rem;
    }
}

.remove-processes {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: white;
}

.remove-processes-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.remove-processes-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.remove-processes-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a365d;
}

.remove-processes-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.remove-processes-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-processes-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
}

.modern-tech {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: #faf9f6;
}

.modern-tech-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.modern-tech-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-tech-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
}

.modern-tech-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modern-tech-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a365d;
}

.modern-tech-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .remove-processes-content,
    .modern-tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .remove-processes-image,
    .modern-tech-image {
        order: -1;
    }
    
    .remove-processes-title,
    .modern-tech-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .remove-processes,
    .modern-tech {
        padding: 3rem 1.5rem;
    }
    
    .remove-processes-title,
    .modern-tech-title {
        font-size: 1.75rem;
    }
    
    .remove-processes-description,
    .modern-tech-description {
        font-size: 1rem;
    }
}

.cta-section {
    padding: 3rem 2rem;
    background-color: #e74c3c;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-button-white {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: white;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button-white:hover {
    background-color: #faf9f6;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-button-white {
        width: 100%;
    }
}

.tabs-section {
    padding: 3rem 2rem;
    background-color: white;
}

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

.tabs-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a365d;
    margin-bottom: 1rem;
}

.tabs-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.tabs-wrapper {
    width: 100%;
}

.tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-button {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: #e74c3c;
}

.tab-button.active {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.tab-panel.active {
    display: grid;
}

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

.tab-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.tab-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tab-content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
}

.tab-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

@media (max-width: 1024px) {
    .tab-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tab-image {
        order: -1;
    }
    
    .tabs-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .tabs-section {
        padding: 3rem 1.5rem;
    }
    
    .tabs-title {
        font-size: 1.75rem;
    }
    
    .tabs-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .tabs-header {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .tab-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .tab-content-title {
        font-size: 1.5rem;
    }
    
    .tab-content-text {
        font-size: 1rem;
    }
}

.technology {
    padding: 3rem 2rem;
    background-color: #faf9f6;
}

.technology-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.technology-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.technology-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.technology-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.technology-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.technology-logo:hover {
    opacity: 1;
}

.technology-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

.technology-cta {
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .technology-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .technology {
        padding: 3rem 1.5rem;
    }
    
    .technology-title {
        font-size: 1.75rem;
    }
    
    .technology-description {
        font-size: 1rem;
    }
    
    .technology-logos {
        gap: 1.5rem;
    }
    
    .technology-logo img {
        max-height: 50px;
    }
}

.testimonials {
    padding: 3rem 2rem;
    background-color: white;
}

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

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a365d;
    margin-bottom: 3rem;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: #c0392b;
    transform: scale(1.1);
}

.testimonials-wrapper {
    flex: 1;
    display: flex;
    overflow: hidden;
    gap: 2rem;
}

.testimonial-card {
    min-width: 100%;
    background-color: #faf9f6;
    padding: 2rem;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card.active {
    display: flex;
}

.stars {
    color: #e74c3c;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin: 0;
}

.testimonial-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.testimonial-link:hover {
    color: #c0392b;
}

@media (max-width: 1024px) {
    .testimonials-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1.5rem;
    }
    
    .testimonials-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

.form-section {
    padding: 3rem 2rem;
    background-color: #faf9f6;
}

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

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a365d;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
}

.info-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a365d;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.form-group textarea {
    resize: vertical;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-submit-btn {
    grid-column: 1 / -1;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #c0392b;
}

@media (max-width: 768px) {
    .form-section {
        padding: 3rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .info-form {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: 1;
    }
}

.footer {
    padding: 3rem 2rem;
    background-color: #e74c3c;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

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

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1a365d;
}

.footer-info-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-info {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-contact {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact:hover {
    color: #faf9f6;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    width: 100%;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem;
    }
    
    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }
    
    .footer-info {
        font-size: 0.85rem;
    }
}

