/* Base styles and resets */
:root {
    --primary-color: #2e4c6d;
    --secondary-color: #396eb0;
    --accent-color: #fc8621;
    --text-color: #333;
    --light-text: #f8f9fa;
    --dark-text: #212529;
    --bg-color: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --error-color: #dc3545;
    --neon-color: #fc8621;
    --font-primary: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 5px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: #666;
}

/* Buttons and CTAs */
.btn, button[type="submit"] {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn:hover, button[type="submit"]:hover {
    background-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--light-text);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: #e67510;
    color: var(--light-text);
}

.neon-button {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: var(--light-text);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 0 10px 0 var(--neon-color);
}

.neon-button:hover {
    background-color: #ff9933;
    box-shadow: 0 0 20px 5px var(--neon-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.neon-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: var(--transition);
}

.neon-button:hover:before {
    transform: translateX(100%);
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

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

nav ul {
    display: flex;
}

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

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

nav ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

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

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(46, 76, 109, 0.8), rgba(57, 110, 176, 0.8)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 150px 0 100px;
    text-align: center;
}

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

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

.hero .slogan {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #fff;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(46, 76, 109, 0.8), rgba(57, 110, 176, 0.8)), url('images/5.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 15px;
}

.page-header .slogan {
    font-size: 1.3rem;
    font-weight: 300;
}

/* Featured Posts Section */
.featured-posts {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.post-card {
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.post-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

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

.post-content {
    padding: 20px;
}

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

.post-content p {
    color: #666;
    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 i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

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

/* Services Preview Section */
.services-preview {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.services-preview .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Blog Content Section */
.blog-content {
    padding: 80px 0;
}

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

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

.blog-card:hover {
    box-shadow: var(--shadow-md);
}

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

.blog-text {
    padding: 30px 30px 30px 0;
}

.blog-meta {
    display: flex;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.blog-meta span {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-text h2 {
    margin-bottom: 15px;
}

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

/* Post Content Styles */
.post-header {
    background: linear-gradient(rgba(46, 76, 109, 0.8), rgba(57, 110, 176, 0.8)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 120px 0 60px;
}

.breadcrumbs {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
    color: #fff;
    text-decoration: underline;
}

.post-header h1 {
    color: #fff;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
}

.post-meta span {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 5px;
}

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

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

.post-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

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

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

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

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

.post-text ul, .post-text ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.post-text ul li, .post-text ol li {
    margin-bottom: 10px;
    list-style-type: disc;
}

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

.post-text blockquote {
    border-left: 4px solid var(--accent-color);
    padding: 15px 30px;
    margin: 30px 0;
    background-color: var(--light-bg);
    font-style: italic;
}

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

.post-tags span {
    font-weight: 600;
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    background-color: var(--light-bg);
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

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

.post-share span {
    font-weight: 600;
    margin-right: 15px;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    margin-right: 10px;
    color: var(--text-color);
    transition: var(--transition);
}

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

.author-box {
    display: flex;
    background-color: var(--light-bg);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 40px;
}

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

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

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

.author-social {
    margin-top: 15px;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 10px;
    color: var(--text-color);
    transition: var(--transition);
}

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

.related-posts {
    margin-bottom: 60px;
}

.related-posts h2 {
    margin-bottom: 30px;
}

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

.related-card {
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

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

.related-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.1rem;
}

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

.comments-section h2 {
    margin-bottom: 30px;
}

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

.comment.reply {
    margin-left: 60px;
    border-left: 2px solid var(--accent-color);
    padding-left: 20px;
}

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

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

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-date {
    color: #666;
    font-size: 0.9rem;
}

.comment-actions {
    margin-top: 10px;
}

.comment-actions a {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    color: #666;
    font-size: 0.9rem;
}

.comment-actions a i {
    margin-right: 5px;
}

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

.comment-form {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 40px;
}

.comment-form h3 {
    margin-bottom: 20px;
}

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

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

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

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

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(46, 76, 109, 0.9), rgba(57, 110, 176, 0.9)), url('images/6.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

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

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

.newsletter-form button {
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 15px 25px;
}

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

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

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

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.mission-value {
    text-align: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--radius);
    transition: var(--transition);
}

.mission-value:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.mission-value i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.mission-value h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.team-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

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

.team-member:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
}

.member-role {
    display: block;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.member-social {
    margin-top: 15px;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--light-bg);
    margin-right: 10px;
    color: var(--text-color);
    transition: var(--transition);
}

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

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

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

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    width: 120px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.timeline-date span {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
}

.timeline-date:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-date:before {
    right: -7px;
}

.timeline-item:nth-child(even) .timeline-date:before {
    left: -7px;
}

.timeline-content {
    width: calc(50% - 80px);
    padding: 20px;
    background-color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

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

.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 span {
    color: #666;
    font-size: 0.9rem;
}

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

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

.partner {
    padding: 20px;
    background-color: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.partner img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner:hover img {
    filter: grayscale(0);
}

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

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 20px;
}

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

.services-main {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.service-item {
    display: flex;
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 2.5rem;
    padding: 20px;
}

.service-content {
    flex: 1;
    padding: 30px;
}

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

.service-details {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

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

.detail-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.detail-item ul {
    margin-top: 15px;
    padding-left: 20px;
}

.detail-item ul li {
    margin-bottom: 8px;
    list-style-type: disc;
}

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

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

.pricing-card {
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

.pricing-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 0 var(--radius);
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    margin-bottom: 0;
}

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

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

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.pricing-footer p {
    margin-bottom: 20px;
    color: #666;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

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

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

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

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 20px;
    margin-top: 5px;
}

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

.social-contact {
    margin-bottom: 30px;
}

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

.company-info h3 {
    margin-bottom: 15px;
}

.contact-form-container {
    background-color: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    margin-bottom: 15px;
}

.contact-form-container > p {
    margin-bottom: 30px;
}

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

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

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

.checkbox-group label {
    flex: 1;
}

.map-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    overflow: auto;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fff;
    margin: 100px auto;
    padding: 40px;
    border-radius: var(--radius);
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: slideIn 0.3s;
}

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

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

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

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

.success-message i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-message h2 {
    margin-bottom: 15px;
}

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    display: none;
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 15px;
}

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

.cookie-content a {
    display: block;
    margin-top: 10px;
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding-top: 80px;
}

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

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

.footer-links h4, .footer-contact h4, .footer-social h4 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

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

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

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

.footer-contact p i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer-social .social-icons {
    display: flex;
}

.footer-social .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);
    margin-right: 10px;
    color: #fff;
    transition: var(--transition);
}

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

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

.footer-legal {
    margin-bottom: 15px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 15px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #fff;
    text-decoration: underline;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .hero {
        padding: 130px 0 80px;
    }
    
    .about-content, .intro-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 250px;
    }
    
    .blog-text {
        padding: 30px;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-date {
        width: 80px;
        padding: 0;
        margin-right: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-date:before,
    .timeline-item:nth-child(even) .timeline-date:before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 110px);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: #fff;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        z-index: 1000;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 0 0 20px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .posts-grid, .services-grid, .team-grid, .partners-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-img {
        margin: 0 0 20px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--radius);
        margin-bottom: 15px;
    }
    
    .newsletter-form button {
        border-radius: var(--radius);
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin: 0 0 15px 0;
    }
    
    .comment.reply {
        margin-left: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin: 0 0 15px 0;
    }
}
