/* Base Styles */
:root {
    --primary-color: #1e4d92;
    --primary-dark: #143870;
    --primary-light: #2a65bf;
    --secondary-color: #e8b547;
    --secondary-dark: #d1a13a;
    --secondary-light: #f1c662;
    --neutral-100: #ffffff;
    --neutral-200: #f8f8f8;
    --neutral-300: #e9e9e9;
    --neutral-400: #d1d1d1;
    --neutral-500: #b1b1b1;
    --neutral-600: #858585;
    --neutral-700: #5a5a5a;
    --neutral-800: #2e2e2e;
    --neutral-900: #1a1a1a;
    --text-color: #2e2e2e;
    --success-color: #2a9d8f;
    --warning-color: #e76f51;
    --danger-color: #e63946;
    --info-color: #457b9d;
    --font-primary: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --border-radius: 6px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

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

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;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: var(--neutral-100);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--neutral-800);
}

.secondary-btn:hover {
    background-color: var(--secondary-dark);
    color: var(--neutral-800);
}

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

.outline-btn:hover {
    background-color: var(--primary-color);
    color: var(--neutral-100);
}

.center-button {
    text-align: center;
    margin: 2rem 0;
}

/* Header & Navigation */
header {
    background-color: var(--neutral-100);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

nav ul {
    display: flex;
    gap: 2rem;
}

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

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

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

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

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--neutral-100);
    padding: 5rem 0;
    position: relative;
    background-image: linear-gradient(45deg, rgba(30, 77, 146, 0.9), rgba(30, 77, 146, 0.8)), url('../images/1.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-100);
}

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

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: var(--neutral-100);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--neutral-100);
    margin-bottom: 0.5rem;
}

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

/* Featured Posts Section */
.featured-posts {
    padding: 5rem 0;
    background-color: var(--neutral-200);
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.post-card {
    background-color: var(--neutral-100);
    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 20px rgba(0, 0, 0, 0.12);
}

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

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

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

.post-content {
    padding: 1.5rem;
}

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

.post-content p {
    margin-bottom: 1.25rem;
    color: var(--neutral-700);
}

.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: 8px;
}

/* Investment Timeline */
.investment-timeline {
    padding: 5rem 0;
    background-color: var(--neutral-100);
}

.investment-timeline h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 50px 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding: 0 0 50px 40px;
}

.timeline-date {
    position: absolute;
    width: 90px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--neutral-100);
    text-align: center;
    line-height: 30px;
    border-radius: 15px;
    top: 0;
    right: -45px;
    font-weight: 600;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -45px;
    right: auto;
}

.timeline-content {
    position: relative;
    padding: 20px;
    background-color: var(--neutral-200);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--neutral-200);
    top: 10px;
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
    border-left: none;
    border-right: 10px solid var(--neutral-200);
}

.timeline-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

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

/* CTA Section */
.cta-section {
    background-color: var(--secondary-color);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--neutral-800);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--neutral-700);
}

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

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

.newsletter-form button {
    padding-left: 24px;
    padding-right: 24px;
}

/* Footer */
footer {
    background-color: var(--neutral-800);
    color: var(--neutral-400);
    padding: 4rem 0 2rem;
}

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

.footer-column h3 {
    color: var(--neutral-100);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-column p,
.footer-column address p {
    margin-bottom: 0.5rem;
    font-style: normal;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column ul li a:hover {
    color: var(--neutral-100);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--neutral-700);
    padding-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-icons a {
    color: var(--neutral-400);
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-light);
}

.footer-bottom p {
    margin-bottom: 0;
}

/* Icon placeholders (usually replaced with icon fonts or SVGs) */
.icon-location, .icon-phone, .icon-email {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-color: var(--neutral-500);
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

/* Blog Page Styles */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.blog-post {
    display: flex;
    flex-direction: column;
    background-color: var(--neutral-100);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-post .post-image {
    height: 250px;
}

.blog-post .post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

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

.post-category {
    padding: 3px 10px;
    background-color: var(--primary-light);
    color: var(--neutral-100);
    border-radius: 12px;
    font-weight: 600;
}

/* Blog Sidebar Styles */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sidebar-widget {
    background-color: var(--neutral-100);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--neutral-300);
}

.category-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--neutral-300);
}

.category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

.sidebar-form input {
    padding: 12px 16px;
    border: 1px solid var(--neutral-400);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.recent-posts li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--neutral-300);
}

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

.recent-posts a {
    display: flex;
    gap: 1rem;
    color: var(--neutral-800);
}

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

.recent-posts img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.recent-posts h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.recent-posts span {
    font-size: 0.85rem;
    color: var(--neutral-600);
}

/* Single Blog Post Styles */
.blog-post-single {
    padding: 3rem 0 5rem;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.post-header h1 {
    margin-bottom: 1rem;
}

.post-header .post-meta {
    justify-content: center;
}

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

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

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

.post-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--neutral-700);
}

.post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

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

.post-content li {
    margin-bottom: 0.5rem;
}

.content-image {
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image-caption {
    font-size: 0.9rem;
    color: var(--neutral-600);
    text-align: center;
    padding: 0.75rem;
    background-color: var(--neutral-200);
    margin-bottom: 0;
}

blockquote {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--neutral-200);
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
}

blockquote p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

blockquote cite {
    font-weight: 600;
    color: var(--neutral-700);
}

.data-chart {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: var(--neutral-200);
    border-radius: var(--border-radius);
}

.data-chart h4 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-bars li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.bar-label {
    width: 150px;
    font-weight: 600;
}

.bar {
    height: 30px;
    background-color: var(--primary-color);
    color: var(--neutral-100);
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 3px;
    font-weight: 600;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--neutral-300);
}

.data-table th {
    background-color: var(--neutral-300);
    font-weight: 600;
}

.data-table tr:nth-child(even) {
    background-color: var(--neutral-100);
}

.author-box {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--neutral-200);
    border-radius: var(--border-radius);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 0.5rem;
}

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

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-300);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-tags, .post-share {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.post-tags a {
    padding: 5px 12px;
    background-color: var(--neutral-200);
    border-radius: 15px;
    color: var(--neutral-700);
    font-size: 0.9rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: var(--neutral-100);
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--neutral-200);
    border-radius: 50%;
    color: var(--neutral-700);
    transition: var(--transition);
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: var(--neutral-100);
}

.related-posts {
    margin-top: 4rem;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.related-post {
    position: relative;
    background-color: var(--neutral-100);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

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

.related-post h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
}

.related-post span {
    display: block;
    padding: 0 1rem 1rem;
    font-size: 0.85rem;
    color: var(--neutral-600);
}

/* About Page Styles */
.about-company {
    padding: 5rem 0;
    background-color: var(--neutral-100);
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    margin-top: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--neutral-200);
    border-radius: var(--border-radius);
}

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

.stat-text {
    font-weight: 600;
    color: var(--neutral-700);
}

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

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: var(--neutral-200);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--neutral-700);
}

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

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

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

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

.team-member h3 {
    margin: 1.25rem 1.25rem 0.25rem;
}

.team-member p {
    margin: 0 1.25rem 1rem;
    font-size: 0.95rem;
}

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

.social-links {
    display: flex;
    gap: 0.75rem;
    margin: 0 1.25rem 1.25rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--neutral-200);
    border-radius: 50%;
    color: var(--neutral-700);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--neutral-100);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background-color: var(--neutral-100);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    padding: 2rem;
    background-color: var(--neutral-200);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-light);
    color: var(--neutral-100);
    border-radius: 50%;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    margin-bottom: 0;
    color: var(--neutral-700);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--neutral-200);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: var(--neutral-100);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.testimonial-quote {
    padding: 2rem 2rem 1rem;
    font-style: italic;
}

.testimonial-quote p {
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem 2rem;
}

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

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background-color: var(--neutral-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.info-content h3 {
    margin-bottom: 0.5rem;
}

.info-content p {
    margin-bottom: 0.25rem;
    color: var(--neutral-700);
}

.social-contact {
    margin-top: 3rem;
}

.social-contact h3 {
    margin-bottom: 1rem;
}

.contact-form-container {
    background-color: var(--neutral-200);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    margin-top: 0;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--neutral-400);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: var(--neutral-200);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--neutral-100);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    padding: 2rem;
    background-color: var(--neutral-200);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    margin-bottom: 0;
    color: var(--neutral-700);
}

/* Thank You 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: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--neutral-100);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

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

.modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--success-color);
    color: var(--neutral-100);
    border-radius: 50%;
}

.modal-content h2 {
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 1.5rem;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--neutral-100);
}

.cookie-btn.accept:hover {
    background-color: var(--primary-dark);
}

.cookie-btn.customize {
    background-color: var(--neutral-300);
    color: var(--neutral-800);
}

.cookie-btn.customize:hover {
    background-color: var(--neutral-400);
}

.cookie-btn.reject {
    background-color: transparent;
    border: 1px solid var(--neutral-400);
    color: var(--neutral-700);
}

.cookie-btn.reject:hover {
    background-color: var(--neutral-200);
}

.cookie-policy-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: underline;
}

/* New Badge */
.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--warning-color);
    color: var(--neutral-100);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.new-badge.large {
    padding: 5px 12px;
    font-size: 0.9rem;
    top: 20px;
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-date {
        left: -15px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-date {
        left: -15px;
        right: auto;
    }
    
    .timeline-content::after, .timeline-item:nth-child(even) .timeline-content::after {
        display: none;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonial-slider, .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .post-meta {
        flex-wrap: wrap;
    }
    
    .post-grid, .related-grid, .team-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
}
