/* General Styles */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: linear-gradient(to right, #004080, #0066cc);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.site-title {
    font-size: 2.5em;
    margin: 0;
}

.site-tagline {
    font-size: 1.2em;
    margin: 10px 0;
}

.cta-button {
    display: inline-block;
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

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

/* Navigation */
.navigation {
    background-color: #333;
    color: #fff;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav-link:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #004080;
    text-transform: uppercase;
}

.section-description {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

/* About Section */
.about-section {
    background-color: #fff;
}

/* Features Section */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Pricing Section */
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.pricing-item {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    width: 30%;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.pricing-item:hover {
    border-color: #004080;
    background-color: #f0f8ff;
}

.pricing-tier {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #004080;
}

.pricing-details {
    margin-bottom: 10px;
    color: #666;
}

.pricing-cost {
    font-size: 1.4em;
    font-weight: bold;
    color: #ff6600;
}

/* Documentation Section */
.documentation-link {
    display: inline-block;
    background-color: #004080;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.documentation-link:hover {
    background-color: #003366;
}

/* FAQ Section */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-size: 1.2em;
    font-weight: bold;
    color: #004080;
}

.faq-answer {
    margin-top: 5px;
    color: #666;
}

/* Testimonials Section */
.testimonials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.testimonial-item {
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: #666;
}

.testimonial-author {
    margin-top: 10px;
    font-weight: bold;
    color: #004080;
}

/* Team Section */
.team-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

.team-member {
    text-align: center;
    width: 30%;
}

.team-name {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: #004080;
}

.team-role {
    color: #666;
}

/* Blog Section */
.blog-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-post {
    margin-bottom: 20px;
}

.blog-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #004080;
}

.blog-summary {
    margin-top: 5px;
    color: #666;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-text {
    margin: 0;
}

.social-links {
    margin-top: 10px;
    padding: 10px 0;
}

.social-link {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.social-link:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
    .pricing-item {
        width: 100%;
        margin-bottom: 20px;
    }
}
