/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #666;
    --text-dark: #222;
    --border-color: #ddd;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --border-radius: 5px;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f7fa;
}

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

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

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

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

ul, ol {
    list-style-position: inside;
    margin: 1rem 0;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.section-padding {
    padding: 80px 0;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    margin: 0;
    list-style-type: none;
}

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

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

.clock-widget {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark);
}

.clock-widget i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/6.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

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

/* What You Learn Section */
.what-you-learn {
    padding: 80px 0;
    background-color: white;
}

.what-you-learn h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.learn-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.learn-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.learn-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.learn-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Featured Posts */
.featured-posts {
    padding: 80px 0;
    background-color: #f5f7fa;
}

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

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

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

.post-card:hover {
    transform: translateY(-5px);
    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(--text-light);
    margin-bottom: 15px;
}

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

.read-more:hover {
    color: var(--primary-color);
}

.read-more::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.8rem;
}

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

/* CTA Section */
.cta {
    background: linear-gradient(rgba(52, 152, 219, 0.9), rgba(52, 152, 219, 0.9)), url('images/13.jpg') center/cover no-repeat;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

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

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

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.subscribe-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

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

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

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

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4::after, .footer-contact h4::after, .footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
    margin: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

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

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-policies {
    display: flex;
    gap: 20px;
}

.footer-policies a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

/* 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);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    max-width: 800px;
    margin-bottom: 20px;
}

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

.btn-cookie {
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: white;
}

.btn-cookie.customize {
    background-color: var(--light-color);
    color: var(--text-color);
}

.btn-cookie.decline {
    background-color: var(--error-color);
    color: white;
}

.cookie-content a {
    font-size: 0.9rem;
}

/* Blog Page Styles */
.page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/6.jpg') center/cover no-repeat;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 10px;
}

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

.blog-content .container {
    display: flex;
    gap: 40px;
}

.blog-filters {
    width: 250px;
    flex-shrink: 0;
}

.search-bar {
    display: flex;
    margin-bottom: 30px;
}

.search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.search-bar button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 15px;
    cursor: pointer;
}

.categories h3 {
    margin-bottom: 15px;
}

.categories ul {
    list-style: none;
    margin: 0;
}

.categories ul li {
    margin-bottom: 10px;
}

.categories ul li a {
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.blog-posts {
    flex: 1;
}

.blog-post-card {
    display: flex;
    background: white;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-post-card .post-image {
    width: 35%;
    height: auto;
}

.blog-post-card .post-content {
    width: 65%;
    padding: 25px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-meta span i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.read-more-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 5px;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.pagination a {
    background-color: white;
    color: var(--text-color);
}

.pagination span.active, .pagination a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.newsletter {
    background-color: #f5f7fa;
    padding: 60px 0;
    text-align: center;
}

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

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* About Page Styles */
.about-intro {
    padding: 60px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image {
    width: 40%;
}

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

.about-text {
    width: 60%;
}

.mission-values {
    padding: 60px 0;
    background-color: #f5f7fa;
}

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

.values h2 {
    text-align: center;
    margin-bottom: 40px;
}

.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);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.team {
    padding: 60px 0;
}

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

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

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

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

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

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

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

.member-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f5f7fa;
    border-radius: 50%;
    color: var(--text-color);
}

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

.why-choose-us {
    padding: 60px 0;
    background-color: #f5f7fa;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.feature {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonials {
    padding: 60px 0;
}

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

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    width: calc(50% - 15px);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
}

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

.testimonial-text p::before {
    content: '\201C';
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.testimonial-text p::after {
    content: '\201D';
    font-size: 1.5rem;
    color: var(--secondary-color);
}

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

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

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Services Page Styles */
.services-intro {
    padding: 60px 0;
}

.services-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.services-text {
    width: 60%;
}

.services-image {
    width: 40%;
}

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

.services-list {
    padding: 60px 0;
    background-color: #f5f7fa;
}

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

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

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

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-features {
    margin: 20px 0;
    list-style-type: none;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--success-color);
    position: absolute;
    left: 0;
}

.pricing {
    padding: 60px 0;
}

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

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: calc(33.333% - 20px);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
}

.price-header {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    text-align: center;
}

.featured .price-header {
    background-color: var(--secondary-color);
}

.price-header h3 {
    color: white;
    margin-bottom: 15px;
}

.price {
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.price-features {
    padding: 30px;
    margin: 0;
    list-style-type: none;
}

.price-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.price-features li i {
    position: absolute;
    left: 0;
}

.price-features li.disabled {
    opacity: 0.5;
}

.price-features li i.fa-check {
    color: var(--success-color);
}

.price-features li i.fa-times {
    color: var(--error-color);
}

.price-card .btn {
    display: block;
    margin: 0 30px 30px;
}

.process {
    padding: 60px 0;
    background-color: #f5f7fa;
}

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

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 60px;
    right: 60px;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 120px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: var(--box-shadow);
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.faq {
    padding: 60px 0;
}

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

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(52, 152, 219, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--secondary-color);
}

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

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle i::before {
    content: '\f068';
}

/* Contact Page Styles */
.contact-info {
    padding: 60px 0;
}

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

.contact-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-card h3 {
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 10px;
}

.btn-chat {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

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

.contact-form-section {
    padding: 60px 0;
    background-color: #f5f7fa;
}

.contact-container {
    display: flex;
    gap: 40px;
}

.form-info {
    width: 40%;
}

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

.contact-benefits {
    margin-top: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-form {
    width: 60%;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

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

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

.form-group.checkbox label {
    margin-bottom: 0;
}

.map-section {
    padding: 60px 0;
}

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

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

.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalfade 0.3s ease;
}

@keyframes modalfade {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.close-modal:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-body h2 {
    margin-bottom: 15px;
}

.modal-body p {
    margin-bottom: 20px;
}

/* Blog Post Styles */
.blog-post-header {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/6.jpg') center/cover no-repeat;
    color: white;
    padding: 60px 0;
}

.blog-post-header h1 {
    color: white;
    margin-bottom: 15px;
}

.blog-post-content {
    padding: 60px 0;
}

.post-container {
    display: flex;
    gap: 40px;
}

.post-main {
    width: 70%;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.post-main .post-image {
    height: auto;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.post-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    border-left: 3px solid var(--secondary-color);
    padding-left: 20px;
}

.post-main h2, .post-main h3, .post-main h4 {
    margin-top: 40px;
}

.post-main ul, .post-main ol {
    margin-left: 20px;
}

.post-main blockquote {
    background-color: #f5f7fa;
    border-left: 3px solid var(--secondary-color);
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
}

.disclaimer {
    background-color: #fff8e1;
    border-left: 3px solid var(--warning-color);
    padding: 15px;
    margin: 30px 0;
    font-size: 0.9rem;
}

.tags {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.tags span {
    font-weight: 600;
}

.tags a {
    background-color: #f5f7fa;
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
}

.tags a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.share-post {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.share-post span {
    font-weight: 600;
}

.share-post a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f5f7fa;
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.share-post a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.author-box {
    display: flex;
    background-color: #f5f7fa;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 10px;
    margin-top: 0;
}

.author-info p {
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    color: var(--text-color);
}

.author-social a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.post-sidebar {
    width: 30%;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    align-items: center;
}

.popular-post img {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    object-fit: cover;
    margin-right: 15px;
}

.popular-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.popular-post span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.categories-list {
    list-style: none;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.categories-list li a:hover {
    color: var(--secondary-color);
}

.categories-list li a span {
    background-color: #f5f7fa;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.8rem;
}

.cta-widget {
    background: linear-gradient(rgba(52, 152, 219, 0.9), rgba(52, 152, 219, 0.9)), url('images/13.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
}

.cta-widget h3::after {
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
}

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

.cta-widget .btn {
    background-color: white;
    color: var(--secondary-color);
}

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

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud a {
    background-color: #f5f7fa;
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.tags-cloud a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.related-posts {
    padding: 60px 0;
    background-color: #f5f7fa;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .testimonial {
        width: 100%;
    }
    
    .price-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    .about-content, .services-content {
        flex-direction: column;
    }
    
    .about-image, .about-text, .services-text, .services-image {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .form-info, .contact-form {
        width: 100%;
    }
    
    .post-container {
        flex-direction: column;
    }
    
    .post-main, .post-sidebar {
        width: 100%;
    }
    
    .blog-post-card {
        flex-direction: column;
    }
    
    .blog-post-card .post-image, .blog-post-card .post-content {
        width: 100%;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    nav ul li {
        margin: 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .subscribe-form, .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-form input, .newsletter-form input,
    .subscribe-form button, .newsletter-form button {
        width: 100%;
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .price-card {
        width: 100%;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
