/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #2a2a72;
    --accent-color: #ffc107;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --body-font: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --heading-font: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --container-width: 1140px;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn.primary {
    background-color: var(--primary-color);
    color: white;
}

.btn.primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn.tertiary {
    background-color: var(--light-gray);
    color: var(--dark-color);
}

.btn.tertiary:hover {
    background-color: var(--gray-color);
    color: white;
}

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

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

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

nav ul li a:hover, 
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -5px;
    left: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.hero-image {
    flex: 1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Features Section */
.features {
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    color: var(--primary-color);
    width: 30px;
    height: 30px;
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-item p {
    color: var(--gray-color);
}

/* Daily Inspiration Section */
.daily-inspiration {
    background-color: var(--light-color);
    padding: 60px 0;
}

.inspiration-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.daily-inspiration h2 {
    text-align: center;
    margin-bottom: 30px;
}

blockquote {
    position: relative;
    padding: 20px 40px;
    margin-bottom: 30px;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: 0;
    top: -20px;
    color: var(--primary-color);
    opacity: 0.2;
}

blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 10px;
}

blockquote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--gray-color);
}

.inspiration-action {
    margin-top: 20px;
}

.inspiration-action p {
    margin-bottom: 15px;
}

/* Latest Posts Section */
.latest-posts {
    background-color: white;
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 50px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.post-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* CTA Section */
.cta {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: var(--light-gray);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: white;
}

.footer-contact address {
    font-style: normal;
    color: var(--light-gray);
    margin-bottom: 15px;
}

.footer-contact address p {
    margin-bottom: 5px;
}

.footer-contact address a {
    color: var(--light-gray);
}

.footer-contact address a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

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

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-more {
    font-size: 0.9rem;
}

.cookie-more a {
    text-decoration: underline;
}

/* Question Modal */
.question-modal,
.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
}

.question-modal h2,
.thank-you-modal h2 {
    margin-bottom: 20px;
    text-align: center;
}

.thank-you-icon {
    text-align: center;
    margin-bottom: 20px;
}

.thank-you-icon svg {
    color: var(--success-color);
}

.thank-you-modal p {
    text-align: center;
    margin-bottom: 20px;
}

.thank-you-modal .btn {
    display: block;
    margin: 0 auto;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Blog Page Styles */
.page-header {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
}

.blog-content {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-post {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.blog-post .post-image {
    height: 100%;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.blog-post h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

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

/* Blog Post Single Page Styles */
.blog-post-single {
    padding: 60px 0;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.post-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    display: block;
}

.author-title {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.post-content p, 
.post-content ul, 
.post-content ol {
    margin-bottom: 25px;
}

.post-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-content ul, 
.post-content ol {
    padding-left: 20px;
}

.post-content ul li, 
.post-content ol li {
    margin-bottom: 10px;
}

.post-content ol {
    list-style-type: decimal;
}

.post-content ul {
    list-style-type: disc;
}

.highlight-quote {
    background-color: var(--light-color);
    border-left: 4px solid var(--primary-color);
    font-size: 1.2rem;
    padding: 30px;
    margin: 30px 0;
}

.example-text {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    font-style: italic;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.comparison-column {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.comparison-column h3 {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 0;
}

.common-mistakes {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.common-mistakes h3 {
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tool-item {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.tool-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.post-action {
    margin-top: 40px;
    text-align: center;
}

.post-share {
    margin-top: 60px;
    text-align: center;
}

.post-share h3 {
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-buttons a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 500;
}

.share-facebook {
    background-color: #3b5998;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-linkedin {
    background-color: #0077b5;
}

.share-email {
    background-color: var(--gray-color);
}

.share-buttons a svg {
    margin-right: 8px;
}

.related-posts {
    margin-top: 80px;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-post {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h4 {
    padding: 15px;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Course Page Styles */
.course-hero {
    background-color: var(--light-color);
    padding: 100px 0;
}

.course-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.course-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.course-hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.course-benefits {
    text-align: center;
}

.course-benefits h2 {
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    color: var(--primary-color);
    width: 30px;
    height: 30px;
}

.course-features {
    background-color: var(--light-color);
}

.course-features h2 {
    text-align: center;
    margin-bottom: 50px;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li svg {
    flex-shrink: 0;
    margin-top: 5px;
    color: var(--success-color);
}

.feature-inactive svg {
    color: var(--gray-color) !important;
}

.features-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.course-curriculum {
    background-color: white;
}

.course-curriculum h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    background-color: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
}

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

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 1000px;
}

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

.module-description {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.testimonials {
    background-color: var(--light-color);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide:first-child {
    display: block;
}

.testimonial-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: left;
    position: relative;
}

.testimonial-stars {
    display: flex;
    margin-bottom: 15px;
}

.testimonial-stars svg {
    color: var(--warning-color);
    margin-right: 5px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.prev-testimonial,
.next-testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background-color: var(--primary-color);
    color: white;
}

.pricing {
    text-align: center;
}

.pricing h2 {
    margin-bottom: 15px;
}

.section-description {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--gray-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.1);
}

.pricing-popular {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    padding: 30px;
    background-color: var(--light-color);
    border-bottom: 1px solid var(--light-gray);
}

.pricing-header h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-color);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.period {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--success-color);
}

.feature-inactive {
    color: var(--gray-color);
}

.pricing-cta {
    padding: 0 30px 30px;
}

.pricing-guarantee {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    gap: 20px;
    align-items: center;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: left;
}

.guarantee-icon svg {
    color: var(--success-color);
}

.guarantee-content h3 {
    margin-bottom: 10px;
}

.faq {
    background-color: var(--light-color);
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    margin-bottom: 20px;
}

.final-cta {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Styles */
.about-mission {
    padding: 80px 0;
}

.about-mission .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission-content h2 {
    margin-bottom: 30px;
}

.mission-content p {
    margin-bottom: 20px;
}

.mission-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.mission-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-values {
    background-color: var(--light-color);
    text-align: center;
}

.about-values h2 {
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    color: var(--primary-color);
}

.about-story {
    padding: 80px 0;
}

.about-story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 30px;
}

.story-content p {
    margin-bottom: 20px;
}

.story-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.team {
    background-color: var(--light-color);
    text-align: center;
}

.team h2 {
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--gray-color);
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

.credentials {
    padding: 80px 0;
    text-align: center;
}

.credentials h2 {
    margin-bottom: 50px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.credential-item {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.credential-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.credential-icon {
    margin-bottom: 20px;
}

.credential-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.credential-item h3 {
    margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 40px;
}

.contact-methods {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 15px;
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.method-icon svg {
    color: var(--primary-color);
}

.method-details h3 {
    margin-bottom: 5px;
}

.method-details p, 
.method-details address {
    color: var(--gray-color);
    font-style: normal;
}

.social-connect h3 {
    margin-bottom: 20px;
}

.contact-form-container {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-form-container h2 {
    margin-bottom: 30px;
    text-align: center;
}

.map-section {
    background-color: var(--light-color);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Media Queries */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .post-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero .container,
    .course-hero .container,
    .about-mission .container,
    .about-story .container,
    .features-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content,
    .mission-content,
    .story-content {
        order: 1;
        padding-right: 0;
    }
    
    .hero-image,
    .mission-image,
    .story-image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .blog-post .post-image {
        height: 300px;
    }
    
    .feature-grid,
    .post-grid,
    .benefits-grid,
    .pricing-grid,
    .faq-grid,
    .values-grid,
    .team-grid,
    .credentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    nav {
        width: 100%;
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-content h1,
    .post-header h1,
    .cta h2,
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .comparison-table,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .share-buttons a {
        flex: 1 0 40%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content h1,
    .post-header h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p,
    .post-content {
        font-size: 1rem;
    }
    
    .feature-grid,
    .post-grid,
    .benefits-grid,
    .pricing-grid,
    .faq-grid,
    .values-grid,
    .team-grid,
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .pricing-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
