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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background: #102770;
}

/* Navbar */
.navbar {
    background: #ffffff;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: #102770;
    letter-spacing: -0.01em;
}

.navbar-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: #0c1c4d;

}

.navbar-link:hover {
    color: #ffffff;
    border: 1px solid #102770;
    background: white;
    color: #102770;
}

.hero {
    min-height: 100vh;
    background-image: url('./images/hero.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: #fff;
    color: #102770;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    align-self: flex-start;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.cta-button-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button-secondary:hover {
    background: #fff;
    color: #102770;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.feature-icon {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.feature-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.divider-gradient {
    height: 250px;
    background: linear-gradient(to bottom, #102770 0%, #102770 30%, #ffffff 100%);
}

/* Clients Section */
.clients-section {
    padding: 100px 40px;
    background-color: #0c1c4d;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.clients-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    max-width: 900px;
    letter-spacing: -0.02em;
}

.clients-logos {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.client-logo img {
    max-width: 900px;
    width: 100%;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.client-logo img:hover {
    opacity: 1;
}

/* eBook Section */
.ebook-section {
    padding: 100px 40px;
    background-color: #0c1c4d;
}

.ebook-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ebook-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ebook-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    letter-spacing: -0.02em;
}

.ebook-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
}

.ebook-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ebook-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
}

.ebook-list-item i {
    color: #4CAF50;
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

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

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

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

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.feature-card-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.feature-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.feature-card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-card-item i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.5rem;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Accordion Section */
.accordion-section {
    padding: 100px 40px;
    background-color: #0c1c4d;
}

.accordion-container {
    max-width: 1400px;
    margin: 0 auto;
}

.accordion-main-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.accordion-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.accordion-content-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    border-color: rgba(255, 255, 255, 0.2);
}

.accordion-header {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.accordion-icon {
    color: #fff;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-body {
    max-height: 600px;
    padding: 0 24px 24px 24px;
}

.accordion-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-button-small {
    padding: 12px 30px;
    font-size: 1rem;
}

.accordion-image-side {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.accordion-image.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.accordion-clients-logos {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion-clients-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.accordion-clients-image:hover {
    opacity: 1;
}

/* Demo Form Section */
.demo-form-section {
    padding: 80px 40px 100px 40px;
    background: #ffffff;
}

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

.demo-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.demo-form-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #102770;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.demo-form-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: #102770;
    margin-bottom: 20px;
}

.demo-form-description {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-label {
    font-size: 1rem;
    font-weight: 500;
    color: #102770;
}

.form-input,
.form-textarea {
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    color: #333;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #102770;
    box-shadow: 0 0 0 3px rgba(16, 39, 112, 0.1);
}

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

.cta-button-form {
    margin-top: 10px;
    width: 100%;
    cursor: pointer;
    border: none;
    background: #102770;
    color: #ffffff;
}

.cta-button-form:hover {
    background: #0d1f5c;
    color: #ffffff;
}

/* CTA Card Section */
.cta-card-section {
    padding: 80px 40px;
    background: #ffffff;
}

.cta-card-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cta-card {
    background-color: #0c1c4d;
    border: 2px solid #102770;
    border-radius: 16px;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.cta-card-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: -0.02em;
    max-width: 900px;
}

.cta-card .cta-button {
    background: #ffffff;
    color: #102770;
    border: 2px solid #ffffff;
    align-self: center;
}

.cta-card .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #102770;
}

/* Footer Gradient */
.footer-gradient {
    height: 250px;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 70%, #102770 100%);
}

/* Footer */
.footer {
    background-color: #0c1c4d;
    padding: 60px 40px 40px 40px;
    color: #fff;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.footer-column-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.footer-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-text i {
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #fff;
}

.footer-registration {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

/* About Page */
.about-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #102770 0%, #1a3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/hero.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 100px 40px;
    background: #fff;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #102770;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-top: 10px;
    margin-bottom: 50px;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-text p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
}

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

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

/* Values Section */
.values-section {
    padding: 100px 40px;
    background-color: #0c1c4d;

}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-section .section-title {
    color: #fff;
}

.values-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #102770;
    font-size: 1.75rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.value-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 40px;
    background: #fff;
}

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

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.why-choose-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.why-choose-item i {
    font-size: 2.5rem;
    color: #102770;
    margin-bottom: 5px;
}

.why-choose-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #102770;
}

.why-choose-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 40px;
    background-color: #0c1c4d;
}

.about-cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Contact Page */
.contact-page-hero {
    padding: 100px 40px 60px 40px;
    background-color: #0c1c4d;
    text-align: center;
}

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

.contact-page-title {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.contact-page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-info-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background-color: #0c1c4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #102770;
}

.contact-info-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.contact-info-link {
    color: #102770;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: #0d1f5c;
    text-decoration: underline;
}

/* Legal Pages (Terms & Privacy Policy) */
.legal-hero {
    padding: 80px 40px 40px 40px;
    background-color: #0c1c4d;
    text-align: center;
}

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

.legal-hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.legal-hero-date {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.legal-content-section {
    padding: 80px 40px;
    background: #fff;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #102770;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    padding: 0;
}

.legal-content li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content strong {
    color: #102770;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 16px 24px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
    
    .navbar-link {
        font-size: 0.95rem;
        padding: 6px 16px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 40px 24px;
    }
    
    .hero-left {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-icon {
        font-size: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.125rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 14px 35px;
    }
    
    .clients-section {
        padding: 60px 24px;
    }
    
    .clients-title {
        font-size: 1.5rem;
    }
    
    .client-logo img {
        max-width: 700px;
    }
    
    .ebook-section {
        padding: 60px 24px;
    }
    
    .ebook-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ebook-title {
        font-size: 1.75rem;
    }
    
    .ebook-subtitle {
        font-size: 1.125rem;
    }
    
    .ebook-list-item {
        font-size: 1rem;
    }
    
    .ebook-image img {
        max-width: 350px;
    }
    
    .features-section {
        padding: 60px 24px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-card-title {
        font-size: 1.5rem;
    }
    
    .feature-card-subtitle {
        font-size: 1rem;
    }
    
    .feature-card-item {
        font-size: 0.9rem;
    }
    
    .accordion-section {
        padding: 60px 24px;
    }
    
    .accordion-main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .accordion-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .accordion-title {
        font-size: 1.125rem;
    }
    
    .accordion-text {
        font-size: 0.95rem;
    }
    
    .accordion-image-side {
        min-height: 350px;
    }
    
    .accordion-clients-logos {
        margin-top: 60px;
    }
    
    .accordion-clients-image {
        max-width: 700px;
    }
    
    .demo-form-section {
        padding: 60px 24px 80px 24px;
    }
    
    .demo-form-title {
        font-size: 2rem;
    }
    
    .demo-form-tagline {
        font-size: 1.25rem;
    }
    
    .demo-form-description {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-card-section {
        padding: 60px 24px;
    }
    
    .cta-card {
        padding: 50px 40px;
        gap: 30px;
    }
    
    .cta-card-title {
        font-size: 1.75rem;
    }
    
    .footer {
        padding: 50px 24px 30px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-heading {
        font-size: 1.25rem;
    }
    
    .footer-column-title {
        font-size: 1rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .story-section {
        padding: 60px 24px;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .values-section {
        padding: 60px 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-section {
        padding: 60px 24px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .about-cta-section {
        padding: 60px 24px;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-cta-text {
        font-size: 1.125rem;
    }
    
    .contact-page-hero {
        padding: 60px 24px 40px 24px;
    }
    
    .contact-page-title {
        font-size: 2.5rem;
    }
    
    .contact-page-subtitle {
        font-size: 1.125rem;
    }
    
    .contact-info-section {
        padding: 60px 24px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-hero {
        padding: 60px 24px 30px 24px;
    }
    
    .legal-hero-title {
        font-size: 2.5rem;
    }
    
    .legal-content-section {
        padding: 60px 24px;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 14px 20px;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .navbar-link {
        font-size: 0.9rem;
        padding: 6px 14px;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero-container {
        padding: 32px 20px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-features {
        gap: 24px;
    }
    
    .feature-icon {
        font-size: 1.125rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 12px 30px;
        width: 100%;
        text-align: center;
    }
    
    .clients-section {
        padding: 40px 20px;
    }
    
    .clients-container {
        gap: 40px;
    }
    
    .clients-title {
        font-size: 1.25rem;
    }
    
    .client-logo img {
        max-width: 100%;
    }
    
    .ebook-section {
        padding: 40px 20px;
    }
    
    .ebook-container {
        gap: 40px;
    }
    
    .ebook-title {
        font-size: 1.5rem;
    }
    
    .ebook-subtitle {
        font-size: 1rem;
    }
    
    .ebook-list {
        gap: 16px;
    }
    
    .ebook-list-item {
        font-size: 0.95rem;
        gap: 12px;
    }
    
    .ebook-list-item i {
        font-size: 1.125rem;
    }
    
    .ebook-image img {
        max-width: 280px;
    }
    
    .features-section {
        padding: 40px 20px;
    }
    
    .features-container {
        gap: 24px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card-title {
        font-size: 1.375rem;
    }
    
    .feature-card-subtitle {
        font-size: 0.95rem;
    }
    
    .feature-card-list {
        gap: 14px;
    }
    
    .feature-card-item {
        font-size: 0.875rem;
        gap: 10px;
    }
    
    .feature-card-item i {
        font-size: 0.45rem;
        margin-top: 7px;
    }
    
    .accordion-section {
        padding: 40px 20px;
    }
    
    .accordion-main-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .accordion-wrapper {
        gap: 30px;
    }
    
    .accordion-header {
        padding: 20px;
    }
    
    .accordion-title {
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 0 20px;
    }
    
    .accordion-item.active .accordion-body {
        padding: 0 20px 20px 20px;
    }
    
    .accordion-text {
        font-size: 0.9rem;
    }
    
    .accordion-image-side {
        min-height: 250px;
    }
    
    .accordion-clients-logos {
        margin-top: 40px;
    }
    
    .accordion-clients-image {
        max-width: 100%;
    }
    
    .cta-button-small {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .demo-form-section {
        padding: 40px 20px 60px 20px;
    }
    
    .demo-form-header {
        margin-bottom: 40px;
    }
    
    .demo-form-title {
        font-size: 1.75rem;
    }
    
    .demo-form-tagline {
        font-size: 1.125rem;
    }
    
    .demo-form-description {
        font-size: 0.95rem;
    }
    
    .demo-form {
        gap: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .cta-card-section {
        padding: 40px 20px;
    }
    
    .cta-card {
        padding: 40px 30px;
        gap: 25px;
    }
    
    .cta-card-title {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 40px 20px 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-heading {
        font-size: 1.125rem;
    }
    
    .footer-column-title {
        font-size: 0.95rem;
    }
    
    .footer-text {
        font-size: 0.875rem;
    }
    
    .footer-link {
        font-size: 0.875rem;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .about-hero {
        min-height: 50vh;
    }
    
    .about-hero-container {
        padding: 60px 20px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .story-section {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .story-text p {
        font-size: 0.95rem;
    }
    
    .values-section {
        padding: 40px 20px;
    }
    
    .value-card {
        padding: 30px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .value-title {
        font-size: 1.25rem;
    }
    
    .value-description {
        font-size: 0.95rem;
    }
    
    .why-choose-section {
        padding: 40px 20px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-item i {
        font-size: 2rem;
    }
    
    .why-choose-item h4 {
        font-size: 1.125rem;
    }
    
    .why-choose-item p {
        font-size: 0.95rem;
    }
    
    .about-cta-section {
        padding: 60px 20px;
    }
    
    .about-cta-title {
        font-size: 1.75rem;
    }
    
    .about-cta-text {
        font-size: 1rem;
    }
    
    .contact-page-hero {
        padding: 60px 20px 40px 20px;
    }
    
    .contact-page-title {
        font-size: 2rem;
    }
    
    .contact-page-subtitle {
        font-size: 1rem;
    }
    
    .contact-info-section {
        padding: 40px 20px;
    }
    
    .contact-info-card {
        padding: 30px 25px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .contact-info-title {
        font-size: 1.25rem;
    }
    
    .contact-info-text {
        font-size: 0.95rem;
    }
    
    .legal-hero {
        padding: 50px 20px 30px 20px;
    }
    
    .legal-hero-title {
        font-size: 2rem;
    }
    
    .legal-hero-date {
        font-size: 0.9rem;
    }
    
    .legal-content-section {
        padding: 40px 20px;
    }
    
    .legal-content h2 {
        font-size: 1.375rem;
        margin-top: 35px;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 0.95rem;
    }
    
    .legal-content ul {
        margin-left: 20px;
    }
}

