/* Base Styles */
:root {
    --primary-color: #006d77;
    --secondary-color: #83c5be;
    --accent-color: #ee6c4d;
    --dark-color: #293241;
    --light-color: #e0fbfc;
    --text-color: #333333;
    --bg-color: #ffffff;
    --border-color: #dddddd;
    --footer-bg: #293241;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --button-hover: #005a63;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

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

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

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

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

p {
    margin-bottom: 1.5rem;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

button, .button, .cta-button, .button-3d {
    cursor: pointer;
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

/* Header Styles */
header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

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

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

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

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 8px 5px;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #d85c3f;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

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

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

.feature-box .icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.feature-box h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
}

/* Recent Posts Section */
.recent-posts {
    padding: 80px 0;
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 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 10px 25px rgba(0, 0, 0, 0.1);
}

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

.post-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
}

.post-card p {
    padding: 0 20px;
    color: #666;
    font-size: 0.95rem;
}

.read-more {
    display: inline-block;
    margin: 10px 20px 20px;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.view-all a {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.view-all a:hover {
    background: var(--button-hover);
}

/* Timeline Section */
.timeline {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.timeline h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    margin-bottom: 0;
}

/* Call to Action Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

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

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

/* 3D Button */
.button-3d {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    box-shadow: 0 8px 0 #c0563c, 0 15px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.1s, transform 0.1s;
    position: relative;
    display: inline-block;
}

.button-3d:hover {
    box-shadow: 0 6px 0 #c0563c, 0 12px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(2px);
    color: white;
}

.button-3d:active {
    box-shadow: 0 2px 0 #c0563c, 0 5px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(6px);
}

.cta-button-3d {
    display: inline-block;
}

/* Footer Styles */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

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

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

.footer-column ul li a {
    color: #bbb;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
}

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

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

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

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

.registration {
    font-size: 0.85rem;
    color: #999;
}

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

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

.cookie-content p {
    color: white;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

.cookie-btn.customize {
    background-color: white;
    color: var(--dark-color);
}

.cookie-btn.decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-policy-link {
    color: var(--accent-color);
    text-decoration: underline;
    margin-left: 20px;
}

.cookie-policy-link:hover {
    color: var(--accent-color);
    opacity: 0.9;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

.page-banner p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-content {
    padding: 60px 0;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

@media (min-width: 768px) {
    .blog-card {
        flex-direction: row;
    }
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .blog-image {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details {
    padding: 25px;
    flex: 1;
}

.blog-details .date {
    display: inline-block;
    margin-bottom: 15px;
    color: #888;
    font-size: 0.9rem;
}

.blog-details h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog-details p {
    color: #666;
    margin-bottom: 20px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 0 25px;
    background-color: var(--accent-color);
    color: white;
    box-shadow: none;
    transform: none;
}

.newsletter-form button:hover {
    background-color: #d85c3f;
}

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

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .vision-values {
        grid-template-columns: 1fr 1fr;
    }
}

.vision, .values {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.values ul {
    margin-bottom: 0;
}

.values li {
    margin-bottom: 10px;
}

.values li:last-child {
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

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

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

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

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

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

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

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Our Approach Section */
.our-approach {
    padding: 60px 0;
}

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

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

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

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

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

.approach-item .icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

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

.approach-item p {
    color: #666;
    margin-bottom: 0;
}

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

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

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2, .contact-form h2 {
    margin-bottom: 30px;
}

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

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item .icon {
    flex: 0 0 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-item .icon svg {
    width: 25px;
    height: 25px;
    color: white;
}

.contact-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-text p {
    margin-bottom: 5px;
    color: #666;
}

.contact-text .hours, .contact-text .response {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.social-connect {
    margin-top: 40px;
}

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

.contact-form form {
    background: 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: 600;
}

.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;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

.form-group.checkbox label {
    font-weight: normal;
    font-size: 0.95rem;
}

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

.form-submit button {
    width: 100%;
    max-width: 300px;
}

/* Thank You Modal */
.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;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalfade 0.3s;
}

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

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

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

.thank-you-message {
    text-align: center;
    padding: 40px;
}

.check-icon {
    width: 70px;
    height: 70px;
    color: var(--success-color);
    margin: 0 auto 20px;
}

.thank-you-message h2 {
    margin-bottom: 20px;
}

.thank-you-message p {
    margin-bottom: 30px;
}

.close-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.close-btn:hover {
    background-color: var(--button-hover);
}

/* Blog Post Styles */
.article-container {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
}

@media (min-width: 992px) {
    .article-container {
        grid-template-columns: 2fr 1fr;
    }
}

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

.post-header {
    margin-bottom: 30px;
}

.post-header h1 {
    font-size: 2.2rem;
    padding: 30px 30px 20px;
    margin-bottom: 0;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px 20px;
    border-bottom: 1px solid #eee;
}

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

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

.post-date {
    color: #888;
}

.featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.post-content {
    padding: 30px;
}

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

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

.post-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background-color: #f9f9f9;
    border-left: 5px solid var(--primary-color);
    font-style: italic;
}

.post-content blockquote p {
    margin-bottom: 0;
}

.info-box, .callout-box {
    margin: 30px 0;
    padding: 20px;
    border-radius: var(--border-radius);
}

.info-box {
    background-color: #e6f7f8;
    border: 1px solid var(--secondary-color);
}

.callout-box {
    background-color: #fef4e6;
    border: 1px solid var(--accent-color);
}

.info-box h4, .callout-box h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.info-box p, .callout-box p {
    margin-bottom: 0;
}

.post-footer {
    padding: 30px;
    border-top: 1px solid #eee;
}

.share-post {
    margin-bottom: 40px;
}

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

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

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

.share-buttons a:hover {
    background-color: var(--primary-color);
}

.share-buttons svg {
    width: 20px;
    height: 20px;
    color: var(--dark-color);
    transition: var(--transition);
}

.share-buttons a:hover svg {
    color: white;
}

.related-posts h3 {
    margin-bottom: 20px;
}

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

.related-post {
    display: block;
    transition: var(--transition);
}

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

.related-post img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.related-post h4 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--dark-color);
    transition: var(--transition);
}

.related-post:hover h4 {
    color: var(--primary-color);
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.author-bio .author-profile {
    display: flex;
    align-items: flex-start;
}

.author-bio .author-img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

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

.author-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
}

.sidebar-form input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.sidebar-form button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-form button:hover {
    background-color: var(--button-hover);
}

.popular-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.popular-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-posts a {
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
}

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

.cta-widget {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-widget h3 {
    color: white;
}

.cta-widget p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-widget a {
    background-color: var(--accent-color);
    color: white;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-widget a:hover {
    background-color: #d85c3f;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .team-member img {
        height: 220px;
    }

    .post-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .features, .recent-posts, .timeline, .cta, .about-intro, .team-section, .our-approach, .contact-section {
        padding: 50px 0;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: 85%;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }

    .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-date {
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    nav ul li {
        margin-left: 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .cta-button, .button-3d {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .recent-posts h2, .timeline h2, .cta-content h2, .about-content h2, .team-section h2, .our-approach h2, .contact-info h2, .contact-form h2 {
        font-size: 1.8rem;
    }

    .feature-box, .post-card, .team-member, .approach-item {
        padding: 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .post-header h1 {
        font-size: 1.5rem;
        padding: 20px 20px 15px;
    }

    .post-meta, .post-content, .post-footer {
        padding: 15px 20px;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
    }
}
