/* Base Styles */
:root {
    --deep-ottoman-blue: #1f3b4d;
    --turkish-sand: #d8c7a3;
    --soft-marble-white: #f5f5f5;
    --accent-copper: #b87333;
    --shadow-grey: #3c3c3c;
    --light-grey: #e0e0e0;
    --medium-grey: #888;
    --text-dark: #222;
    --text-light: #f8f8f8;
    --serif-font: 'Noto Serif', Georgia, serif;
    --sans-font: 'Open Sans', Arial, sans-serif;
}

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

body {
    font-family: var(--sans-font);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--soft-marble-white);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif-font);
    margin-bottom: 0.8em;
    font-weight: 600;
    color: var(--deep-ottoman-blue);
}

p {
    margin-bottom: 1.5em;
}

a {
    color: var(--deep-ottoman-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-copper);
}

ul, ol {
    margin: 0 0 1.5em 1.5em;
}

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

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: var(--deep-ottoman-blue);
    color: var(--text-light);
    padding: 8px 0;
    font-size: 0.9em;
}

.header-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-info > div {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.header-info i {
    margin-right: 5px;
    color: var(--turkish-sand);
}

.header-main {
    padding: 20px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    font-family: var(--serif-font);
    color: var(--deep-ottoman-blue);
    font-size: 1.8em;
    font-weight: bold;
}

.logo img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

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

.main-nav li {
    margin: 0 15px;
    position: relative;
}

.main-nav li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-copper);
    transition: width 0.3s ease;
}

.main-nav li:hover::after,
.main-nav li.active::after {
    width: 100%;
}

.main-nav a {
    color: var(--deep-ottoman-blue);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    color: var(--deep-ottoman-blue);
    cursor: pointer;
}

/* Main Content Styles */
main {
    padding: 40px 0;
}

.news-summary {
    background-color: #fff;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.summary-header {
    text-align: center;
    margin-bottom: 20px;
}

.summary-header h2 {
    color: var(--deep-ottoman-blue);
    font-size: 1.8em;
}

.ornament {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--accent-copper), transparent);
    margin: 10px auto 20px;
    position: relative;
}

.ornament::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23b87333' d='M50 0 L100 50 L50 100 L0 50 Z'/%3E%3C/svg%3E");
    background-size: contain;
    top: -8px;
    left: 40px;
}

.ornament-small {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-copper), transparent);
    margin: 10px 0 20px;
    position: relative;
}

.news-feed {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.date-marker {
    margin: 0 0 30px;
    position: relative;
    text-align: center;
}

.date-marker span {
    background-color: var(--deep-ottoman-blue);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    position: relative;
    z-index: 2;
}

.ornament-line {
    position: absolute;
    height: 1px;
    background-color: var(--light-grey);
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 1;
}

.news-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-grey);
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in 0.5s ease forwards;
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@keyframes fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-time {
    min-width: 80px;
    font-family: var(--serif-font);
    color: var(--accent-copper);
    font-weight: bold;
    padding-top: 5px;
}

.news-content {
    flex: 1;
}

.news-content h3 {
    margin-bottom: 10px;
    font-size: 1.3em;
}

.news-category {
    margin-top: 15px;
}

.news-category span {
    background-color: var(--turkish-sand);
    color: var(--deep-ottoman-blue);
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: 600;
}

/* Footer Styles */
footer {
    background-color: var(--deep-ottoman-blue);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-family: var(--serif-font);
    font-size: 1.5em;
    color: var(--turkish-sand);
    margin-bottom: 0;
}

.footer-links h3 {
    color: var(--turkish-sand);
    font-size: 1.1em;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--accent-copper);
    bottom: 0;
    left: 0;
}

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

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

.footer-links a {
    color: var(--text-light);
    font-size: 0.9em;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--turkish-sand);
    padding-left: 5px;
}

.footer-contact h3 {
    color: var(--turkish-sand);
    font-size: 1.1em;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--accent-copper);
    bottom: 0;
    left: 0;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9em;
}

.footer-contact i {
    color: var(--turkish-sand);
    margin-right: 10px;
    width: 15px;
    text-align: center;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 59, 77, 0.95);
    color: var(--text-light);
    padding: 20px;
    z-index: 1000;
    display: none;
    animation: slide-up 0.5s ease;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9em;
}

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

.cookie-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--sans-font);
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

#accept-cookies {
    background-color: var(--accent-copper);
    color: white;
}

#accept-cookies:hover {
    background-color: #a56b2e;
}

#customize-cookies, #reject-cookies {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

#customize-cookies:hover, #reject-cookies:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-content a {
    color: var(--turkish-sand);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--accent-copper);
}

/* Post Content Styles */
.post-content {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--medium-grey);
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-copper);
}

.back-link i {
    margin-right: 5px;
}

.post-meta {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9em;
    color: var(--medium-grey);
}

.post-category {
    background-color: var(--turkish-sand);
    color: var(--deep-ottoman-blue);
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: 600;
}

.post-header h1 {
    font-size: 2.2em;
    line-height: 1.3;
    margin-bottom: 15px;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.post-featured-image:hover img {
    transform: scale(1.02);
}

.post-body h2 {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--deep-ottoman-blue);
}

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

.post-body li {
    margin-bottom: 10px;
}

.post-body blockquote {
    border-left: 3px solid var(--turkish-sand);
    padding: 15px 25px;
    margin: 25px 0;
    background-color: rgba(216, 199, 163, 0.1);
    font-style: italic;
}

.post-body blockquote p {
    margin-bottom: 10px;
}

.post-body blockquote cite {
    display: block;
    font-size: 0.9em;
    color: var(--medium-grey);
    text-align: right;
}

.post-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-grey);
}

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

.related-posts h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.related-posts ul {
    list-style-type: none;
    margin: 0;
}

.related-posts li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.related-posts li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-copper);
    font-size: 1.2em;
}

.post-nav {
    display: flex;
    justify-content: center;
}

.btn-back {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--deep-ottoman-blue);
    color: white;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: var(--accent-copper);
    color: white;
}

.btn-back i {
    margin-right: 8px;
}

/* Weather Forecast Styles */
.weather-forecast {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.forecast-day {
    flex: 1;
    min-width: 180px;
    padding: 15px;
    background-color: rgba(216, 199, 163, 0.1);
    border-radius: 5px;
    text-align: center;
}

.forecast-day h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--deep-ottoman-blue);
}

.forecast-icon {
    font-size: 2em;
    color: var(--accent-copper);
    margin: 10px 0;
}

.forecast-temp {
    font-weight: bold;
    margin-bottom: 10px;
}

.forecast-day p {
    font-size: 0.9em;
    margin-bottom: 0;
}

/* Location List Styles */
.location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 20px 0;
}

.location-column {
    flex: 1;
    min-width: 200px;
}

.location-column h3 {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--deep-ottoman-blue);
}

/* About Page Styles */
.about-section {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.about-header h1 {
    font-size: 2.2em;
    color: var(--deep-ottoman-blue);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h2 {
    font-size: 1.6em;
    margin-top: 0;
    color: var(--deep-ottoman-blue);
}

.about-text ul {
    margin-bottom: 25px;
}

.about-text li {
    margin-bottom: 10px;
}

.about-team h2, .about-history h2 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 10px;
}

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

.team-member {
    width: calc(33.333% - 20px);
    min-width: 200px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 3px solid var(--turkish-sand);
}

.team-member h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--medium-grey);
    margin-bottom: 0;
}

.timeline {
    margin-top: 30px;
    position: relative;
}

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

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-date {
    min-width: 100px;
    font-weight: bold;
    color: var(--accent-copper);
    position: relative;
    text-align: right;
    padding-right: 20px;
}

.timeline-date::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-copper);
    top: 6px;
    right: -6px;
    z-index: 1;
}

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

.timeline-content h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

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

/* Privacy Policy & Terms of Use Styles */
.privacy-policy, .terms-of-use {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.privacy-header, .terms-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-header h1, .terms-header h1 {
    font-size: 2.2em;
    color: var(--deep-ottoman-blue);
}

.last-updated {
    color: var(--medium-grey);
    font-size: 0.9em;
    margin-top: 10px;
}

.privacy-intro, .terms-intro {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.privacy-section, .terms-section {
    margin-bottom: 30px;
}

.privacy-section h2, .terms-section h2 {
    font-size: 1.4em;
    color: var(--deep-ottoman-blue);
    margin-bottom: 15px;
}

.privacy-section ul, .terms-section ul, 
.privacy-section ol, .terms-section ol {
    margin-bottom: 20px;
}

.privacy-section li, .terms-section li {
    margin-bottom: 8px;
}

/* Contact Page Styles */
.contact-section {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.contact-header h1 {
    font-size: 2.2em;
    color: var(--deep-ottoman-blue);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: var(--soft-marble-white);
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 1.8em;
    color: var(--accent-copper);
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

.contact-details h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.contact-details p {
    margin-bottom: 5px;
    font-size: 0.9em;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--deep-ottoman-blue);
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-copper);
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form-container h2 {
    font-size: 1.6em;
    margin-bottom: 15px;
}

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

.contact-form {
    margin-top: 20px;
}

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

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

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--light-grey);
    border-radius: 3px;
    font-family: var(--sans-font);
    font-size: 1em;
    transition: border-color 0.3s ease;
}

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

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

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

.checkbox-group label {
    font-size: 0.9em;
}

.form-actions {
    margin-top: 30px;
}

.btn-submit {
    padding: 12px 25px;
    background-color: var(--deep-ottoman-blue);
    color: white;
    border: none;
    border-radius: 3px;
    font-family: var(--sans-font);
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--accent-copper);
}

.contact-map {
    margin-top: 50px;
}

.contact-map h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 5px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modal-zoom 0.3s ease;
}

@keyframes modal-zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
    color: var(--medium-grey);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-copper);
}

.modal-icon {
    font-size: 3em;
    color: #2ecc71;
    margin-bottom: 20px;
}

.modal h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.modal p {
    margin-bottom: 25px;
}

.modal-button {
    padding: 10px 20px;
    background-color: var(--deep-ottoman-blue);
    color: white;
    border: none;
    border-radius: 3px;
    font-family: var(--sans-font);
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-button:hover {
    background-color: var(--accent-copper);
}

/* Corporate Page Styles */
.corporate-section {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.corporate-header h1 {
    font-size: 2.2em;
    color: var(--deep-ottoman-blue);
}

.corporate-content {
    margin-bottom: 50px;
}

.corporate-content > div {
    margin-bottom: 40px;
}

.corporate-image {
    margin-bottom: 30px;
    text-align: center;
}

.corporate-image img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.corporate-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.corporate-card {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    background-color: var(--soft-marble-white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.corporate-card h2 {
    font-size: 1.4em;
    color: var(--deep-ottoman-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-grey);
}

.corporate-card ul {
    margin-bottom: 0;
}

.corporate-card li {
    margin-bottom: 10px;
}

.business-model h2, 
.publication-policy h2, 
.future-goals h2 {
    font-size: 1.8em;
    text-align: center;
    color: var(--deep-ottoman-blue);
    margin-bottom: 10px;
}

.business-model-content, 
.policy-content, 
.goals-content {
    margin-top: 30px;
}

.revenue-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-grey);
}

.revenue-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.revenue-icon {
    font-size: 2em;
    color: var(--accent-copper);
    margin-right: 20px;
    min-width: 50px;
    text-align: center;
}

.revenue-description h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.revenue-description p {
    margin-bottom: 0;
}

.policy-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-grey);
}

.policy-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.policy-item h3 {
    font-size: 1.2em;
    color: var(--deep-ottoman-blue);
    margin-bottom: 10px;
}

.policy-item h3 i {
    color: var(--accent-copper);
    margin-right: 8px;
}

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

.goal-icon {
    font-size: 1.8em;
    color: var(--accent-copper);
    margin-right: 20px;
    min-width: 50px;
    text-align: center;
}

.goal-description h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.goal-description p {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-main .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .main-nav {
        width: 100%;
        order: 3;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
    }
    
    .main-nav li {
        margin: 0 10px 10px 0;
    }
    
    .footer-content > div {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 30px;
    }
    
    .team-member {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .header-info {
        justify-content: center;
    }
    
    .logo a {
        justify-content: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        margin-top: 20px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav li {
        margin: 0 0 15px 0;
    }
    
    .footer-content > div {
        flex: 0 0 100%;
    }
    
    .team-member {
        width: 100%;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-date {
        min-width: 60px;
        font-size: 0.9em;
        padding-right: 10px;
    }
    
    .timeline-date::after {
        right: -4px;
    }
    
    .timeline-content {
        padding-left: 15px;
    }
    
    .revenue-item, .goal-item {
        flex-direction: column;
        text-align: center;
    }
    
    .revenue-icon, .goal-icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 480px) {
    .post-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .post-header h1 {
        font-size: 1.8em;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}
