/* ===== ОСНОВНЫЕ СТИЛИ ===== */
:root {
    --primary-color: #2e5cb8;
    --primary-dark: #1e3c77;
    --primary-light: #4575d4;
    --secondary-color: #e63946;
    --text-color: #333;
    --text-light: #666;
    --text-dark: #222;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --radius: 4px;
    --transition: all 0.3s ease;
    --font-family: 'Roboto', 'Arial', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.btn:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 92, 184, 0.3);
}

/* ===== ЗАГОЛОВОК ===== */
header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

header h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

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

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

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

nav ul li a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
}

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

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

/* ===== ГЕРОЙ-СЕКЦИЯ ===== */
.hero {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill="rgba(255,255,255,0.05)" width="50" height="50"/><rect fill="rgba(255,255,255,0.05)" x="50" y="50" width="50" height="50"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.hero .btn {
    background-color: #fff;
    color: var(--primary-color);
    font-size: 1rem;
    padding: 15px 30px;
}

.hero .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* ===== СЕКЦИЯ ПОСТОВ ===== */
.posts {
    padding: 80px 0;
}

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

.posts h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

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

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

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.post-image {
    height: 220px;
    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: 25px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    font-weight: 600;
    display: inline-block;
    color: var(--primary-color);
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.read-more:hover::after {
    width: 100%;
}

/* ===== СЕКЦИЯ НОВОСТНОЙ РАССЫЛКИ ===== */
.newsletter {
    padding: 70px 0;
    background-color: var(--primary-light);
    color: #fff;
    text-align: center;
}

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

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

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

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

.newsletter-form .btn {
    border-radius: 0 var(--radius) var(--radius) 0;
    background-color: var(--secondary-color);
    padding: 0 25px;
}

.newsletter-form .btn:hover {
    background-color: #c62d3a;
}

/* ===== ПОДВАЛ ===== */
footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-links h3, .footer-contact h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.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 ul {
    list-style: none;
    padding: 0;
}

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

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--primary-light);
}

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

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

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

.social-icons.large a {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: #fff;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
    display: none; /* Будет показано через JavaScript */
}

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

.cookie-content p {
    margin: 10px 20px 10px 0;
    flex-grow: 1;
}

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

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

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

.btn-cookie.customize {
    background-color: var(--info-color);
    color: #fff;
}

.btn-cookie.reject {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

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

.cookie-policy-link {
    color: #fff;
    text-decoration: underline;
    margin-left: 15px;
}

.cookie-policy-link:hover {
    color: var(--primary-light);
}

/* ===== ОДИНОЧНАЯ СТАТЬЯ ===== */
.single-post {
    padding: 60px 0;
}

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

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

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

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

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

.post-content {
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

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

.post-content ul, .post-content ol {
    margin-left: 20px;
    margin-bottom: 25px;
}

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

.post-content blockquote {
    padding: 20px 30px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
    background-color: rgba(46, 92, 184, 0.05);
    font-style: italic;
    position: relative;
}

.post-content blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 3rem;
    color: rgba(46, 92, 184, 0.2);
    font-family: serif;
}

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

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

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

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

.post-tags a {
    background-color: rgba(46, 92, 184, 0.1);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: var(--transition);
}

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

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

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

.share-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-left: 10px;
    transition: var(--transition);
}

.share-link:hover {
    transform: translateY(-3px);
}

.share-link.facebook {
    background-color: #3b5998;
}

.share-link.twitter {
    background-color: #1da1f2;
}

.share-link.linkedin {
    background-color: #0077b5;
}

.share-link.telegram {
    background-color: #0088cc;
}

.post-navigation {
    margin: 40px 0;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-previous, .nav-next {
    max-width: 48%;
}

.nav-previous a, .nav-next a {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
    font-weight: 600;
}

.nav-previous a:hover, .nav-next a:hover {
    background-color: var(--primary-light);
    color: #fff;
}

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

.related-posts h3 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.related-posts h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.post-card.small .post-image {
    height: 180px;
}

.post-card.small .post-content {
    padding: 20px;
}

.post-card.small .post-content h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* ===== О НАС ===== */
.page-header {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    background-image: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
}

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

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

.about-intro {
    padding: 70px 0;
}

.about-intro .container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.about-content h2 {
    margin-top: 40px;
}

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

.about-image {
    align-self: center;
}

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

.our-team {
    background-color: var(--bg-light);
    padding: 70px 0;
    text-align: center;
}

.our-team h2 {
    margin-bottom: 15px;
}

.our-team > p {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

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

.team-member {
    background-color: var(--bg-color);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

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

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 5px;
    object-fit: cover;
    margin-bottom: 20px;
}

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

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

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(46, 92, 184, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.our-values {
    padding: 70px 0;
}

.our-values h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.our-values h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

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

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

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

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

.value-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

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

.cta-section {
    background-color: var(--primary-light);
    color: #fff;
    text-align: center;
    padding: 70px 0;
}

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

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

.cta-section .btn {
    background-color: #fff;
    color: var(--primary-color);
    padding: 15px 30px;
    font-size: 1rem;
}

.cta-section .btn:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

/* ===== КОНТАКТЫ ===== */
.contact-content {
    padding: 70px 0;
}

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

.contact-form-container, .contact-info-container {
    background-color: var(--bg-color);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-container h2, .contact-info-container h2 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.contact-form-container h2::after, .contact-info-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.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(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 92, 184, 0.2);
    outline: none;
}

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

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

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(46, 92, 184, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

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

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

.contact-text p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.office-hours {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.office-hours h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.office-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-hours ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

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

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

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

.office-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.faq-item {
    background-color: var(--bg-color);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-toggle i {
    transition: var(--transition);
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

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

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

/* ===== МОДАЛЬНОЕ ОКНО УСПЕШНОЙ ОТПРАВКИ ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

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

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

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

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

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

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

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .about-intro .container {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-tags, .post-share {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-featured-image img {
        height: 300px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-previous, .nav-next {
        max-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
        border-radius: var(--radius);
    }
    
    .newsletter-form .btn {
        border-radius: var(--radius);
    }
    
    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
}
