:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a9eba;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #ecf0f1;
    --white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
}

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

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

.main-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1.2rem 0;
    box-shadow: 0 4px 12px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.primary-navigation .nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.primary-navigation .nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
}

.primary-navigation .nav-menu a:hover,
.primary-navigation .nav-menu a.nav-active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-banner {
    background: linear-gradient(rgba(44, 95, 125, 0.85), rgba(74, 158, 186, 0.85)), url('images/1.jpg') center/cover no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
}

.hero-content-wrapper {
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.cta-primary:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
}

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

.features-grid {
    padding: 80px 0;
    background-color: var(--background-light);
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-text {
    color: var(--text-light);
    line-height: 1.8;
}

.quote-future {
    padding: 70px 0;
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.quote-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 40px;
}

.quote-icon-left,
.quote-icon-right {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.6;
}

.quote-icon-left {
    position: absolute;
    top: 10px;
    left: 10px;
}

.quote-icon-right {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.future-quote {
    padding: 30px;
}

.quote-text {
    font-size: 1.8rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    font-style: normal;
}

.daily-picks {
    padding: 80px 0;
}

.section-heading-alt {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.pick-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.pick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

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

.pick-content {
    padding: 25px;
}

.pick-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.pick-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pick-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.pick-link:hover {
    color: var(--primary-color);
    gap: 10px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.cta-content-box {
    text-align: center;
    color: var(--white);
}

.cta-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-secondary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-button-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.site-footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-text {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-reg {
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #bdc3c7;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.disclaimer-text {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.age-restriction {
    color: #95a5a6;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.copyright {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px var(--shadow-medium);
    padding: 25px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.cookie-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.cookie-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.cookie-accept:hover {
    background-color: #229954;
}

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

.cookie-customize:hover {
    background-color: var(--primary-color);
}

.cookie-decline {
    background-color: #95a5a6;
    color: var(--white);
}

.cookie-decline:hover {
    background-color: #7f8c8d;
}

.page-hero-small {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-story {
    padding: 80px 0;
}

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

.content-heading {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-paragraph {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.mission-vision {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-light);
    text-align: center;
}

.mission-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.mission-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-text {
    color: var(--text-light);
    line-height: 1.7;
}

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

.section-heading-center {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro-text {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

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

.team-member {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.team-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-name {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 20px 0 8px;
    font-weight: 600;
    padding: 0 20px;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0 20px;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 20px 25px;
}

.cta-about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    text-align: center;
}

.cta-heading-alt {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-text-alt {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-accent {
    display: inline-block;
    background-color: var(--white);
    color: var(--accent-color);
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-accent:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.blog-listing {
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-light);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 350px 1fr;
}

.blog-card:hover {
    box-shadow: 0 12px 30px var(--shadow-medium);
    transform: translateY(-5px);
}

.blog-image-wrapper {
    position: relative;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-date,
.blog-read-time {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-color);
    gap: 12px;
}

.blog-cta {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.cta-heading-blog {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-text-blog {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-button-blog {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-blog:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

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

.contact-info-side {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-info-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 3px;
}

.contact-item-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item-info {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-image-box {
    margin-top: 2rem;
}

.contact-img {
    width: 100%;
    border-radius: 12px;
}

.contact-form-side {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-light);
}

.contact-form-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(74, 158, 186, 0.1);
}

.form-textarea {
    resize: vertical;
}

.form-submit-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form-submit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-light);
}

.contact-disclaimer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.disclaimer-small {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.success-modal.show {
    display: flex;
}

.modal-content-success {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.modal-icon-success {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.modal-title-success {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-text-success {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-close-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.post-single {
    padding-bottom: 60px;
}

.post-hero-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

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

.container-post {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.post-header-content {
    text-align: center;
    padding: 50px 0 30px;
}

.post-category-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.post-main-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.post-meta-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.post-date-info,
.post-read-time-info,
.post-author-info {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-body-content {
    padding-top: 30px;
}

.post-intro-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 500;
}

.post-section-heading {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

.post-paragraph {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.post-conclusion-box {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    margin: 3rem 0;
    border-left: 5px solid var(--secondary-color);
}

.conclusion-heading {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.conclusion-text {
    color: var(--text-light);
    line-height: 1.8;
}

.post-cta-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box-text {
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-box-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-box-button:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .primary-navigation .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .post-main-title {
        font-size: 1.8rem;
    }
    
    .post-meta-info {
        flex-direction: column;
        gap: 10px;
    }
}