.container {
    padding: 150px 80px;
}

.presentation, .pricing {
    margin-bottom: 120px;
}

.presentation h2, .pricing h2, .faq h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #081548;
}

.profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile img {
    width: 450px;
    height: auto;
    border-radius: 5px;
    margin-right: 20px;
}

.profile-info {
    flex: 1;
}

.profile-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.profile-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.profile-info p a {
    color: #081548;
    
}

.profile-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.profile-info ul {
    list-style-type: disc;
    padding-left: 20px;
}

.profile-info ul li {
    font-size: 16px;
    margin-bottom: 5px;
}

.pricing p, .faq p {
    font-size: 16px;
    margin-bottom: 20px;
}

.pricing h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.pricing ul {
    list-style-type: disc;
    padding-left: 20px;
}

.pricing ul li {
    font-size: 16px;
    margin-bottom: 5px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.faq-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s;
    cursor: pointer;
}

.faq-answer {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    padding: 0;
}

.faq-item p {
    font-size: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active h3 {
    color: #081548;
}

.faq-item.active p {
    max-height: 1000px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 10px 0;
}

#ask-question-form {
    margin-top: 20px;
}

#ask-question-form .form-group {
    margin-bottom: 20px;
}

#ask-question-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

#ask-question-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    resize: vertical;
}

.success-message {
    color: green;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 80px 20px;
    }

    .presentation h2, .pricing h2, .faq h2 {
        font-size: 28px;
    }

    .profile {
        flex-direction: column;
        align-items: center;
    }

    .profile img {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .profile-info h3 {
        font-size: 20px;
    }

    .profile-info p, .profile-info ul li {
        font-size: 14px;
    }

    .profile-info h4 {
        font-size: 16px;
    }

    .pricing p, .faq p, .pricing ul li {
        font-size: 14px;
    }

    .faq-item h3 {
        font-size: 20px;
    }

    .faq-item p {
        font-size: 14px;
    }

    #ask-question-form .form-group {
        width: 95%;
        margin-bottom: 20px;
    }

    #ask-question-form label {
        font-size: 14px;
    }

    #ask-question-form textarea {
        font-size: 14px;
    }

    .success-message {
        font-size: 14px;
    }
}