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

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

.about-header h1 {
    color: #747bda;
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #6c757d;
    font-style: italic;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 2;
    min-width: 300px;
}

.about-content h2 {
    color: #747bda;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
}

.about-content p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #444;
}

.how-it-works {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.step {
    flex: 1;
    min-width: 220px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #747bda;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step-icon i {
    font-size: 24px;
}

.values-list {
    list-style: none;
    padding-left: 5px;
}

.values-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.values-list i {
    color: #747bda;
    margin-right: 10px;
    margin-top: 4px;
}

.cta-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f0f3f8;
    border-radius: 10px;
    margin-bottom: 60px;
}

.cta-section h2 {
    color: #747bda;
    margin-bottom: 15px;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #747bda;
    color: white;
}

.btn-primary:hover {
    background-color: #5a62c5;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(116, 123, 218, 0.3);
}

.btn-secondary {
    background-color: white;
    color: #747bda;
    border: 2px solid #747bda;
}

.btn-secondary:hover {
    background-color: #f0f3f8;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(116, 123, 218, 0.2);
}

.footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #ddd;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #747bda;
}

@media (max-width: 768px) {
    .about-section,
    .how-it-works {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
}

/* Android phones and similar (720px width) */
@media (max-width: 720px) {
    .about-section,
    .how-it-works {
        flex-direction: column;
        padding: 1.5rem 0.8rem;
        width: calc(100% - 1.6rem);
        box-sizing: border-box;
    }
    
    .about-content,
    .how-it-works-content {
        padding: 0.8rem;
    }
    
    .about-content h2,
    .how-it-works h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .about-content p,
    .how-it-works p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.8rem;
        width: calc(100% - 1.6rem);
    }
    
    .footer-links {
        margin-top: 12px;
    }
    
    .footer-links a {
        margin: 0 8px;
        font-size: 0.85rem;
    }
}
