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

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

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

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #0f2884;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav-link:hover {
    color: #0f2884;
}

/* Button Styles */
.btn-primary,
.btn-white,
.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0f2884;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #0c216d;
}

.btn-white {
    background-color: white;
    color: #0f2884;
    border: none;
}

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

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

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Opening Section */
.opening {
    padding: 80px 0;
}

.opening-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.opening-text {
    flex: 1;
}

.opening-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0f2884;
}

.opening-text p {
    font-size: 18px;
    margin-bottom: 15px;
}

.opening-text .btn-primary {
    margin-top: 20px;
}

.opening-image {
    flex: 1;
}

/* Motivation Section */
.motivation {
    padding: 80px 0;
    text-align: center;
}

.motivation h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #0f2884;
}

.cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    flex: 1;
    padding: 30px;
    background-color: #dfe7fb;
    border-radius: 8px;
    text-align: center;
}

.card-icon {
    margin-bottom: 20px;
    color: #0f2884;
}

.card h3 {
    font-size: 18px;
    color: #0f2884;
}

.motivation-footer {
    font-size: 16px;
    color: #666;
}

/* Role Section */
.role {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.role-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.role-image {
    flex: 1;
}

.role-text {
    flex: 1;
}

.role-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #0f2884;
}

.role-text p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Design Philosophy Section */
.design {
    padding: 80px 0;
    text-align: center;
}

.design h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #0f2884;
}

.design-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.design-card {
    flex: 1;
    padding: 40px;
    background-color: #dfe7fb;
    border-radius: 8px;
}

.design-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0f2884;
}

.design-card p {
    font-size: 16px;
    color: #666;
}

/* Flow Section */
.flow {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.flow h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #0f2884;
}

.flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    padding: 20px 30px;
    background-color: #dfe7fb;
    border-radius: 8px;
    min-width: 200px;
}

.arrow {
    font-size: 24px;
    color: #0f2884;
    font-weight: bold;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background-color: #dfe7fb;
    text-align: center;
}

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

.trust-icon {
    margin-bottom: 20px;
    color: #0f2884;
}

.trust h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #0f2884;
}

.trust p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq h2 {
    font-size: 30px;
    margin-bottom: 40px;
    text-align: center;
    color: #0f2884;
}

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

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #c2d0ed;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-btn {
    width: 100%;
    padding: 20px;
    background-color: #f9f9f9;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    color: #0f2884;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-btn:hover {
    background-color: #f0f0f0;
}

.accordion-btn.active::after {
    content: '−';
}

.accordion-btn::after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 20px 0;
    color: #666;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: #0f2884;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
    color: #0f2884;
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    color: #0f2884;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #333;
}

.info-item svg {
    flex-shrink: 0;
    color: #0f2884;
    margin-top: 3px;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #c2d0ed;
    border-radius: 8px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    padding: 30px 0;
    background-color: #0f2884;
}

.copyright p {
    text-align: center;
    color: white;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .opening-content,
    .role-content {
        flex-direction: column;
        text-align: center;
    }

    .cards,
    .design-cards {
        flex-direction: column;
    }

    .flow-steps {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .opening-text h1,
    .role-text h2,
    .design h2,
    .flow h2,
    .trust h2,
    .faq h2,
    .cta h2,
    .contact h2 {
        font-size: 24px;
    }
}