/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 10px;
    color: #ffa200;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    margin: 0 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffa200;
}

.nav-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #333;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffa200 0%, #ff0400 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 162, 0, 0.3);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ffa200 0%, #ff0400 100%);
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1rem;
}

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

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advantage-item h3 {
    margin: 20px 0 15px;
    color: #333;
    font-size: 1.3rem;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.news-card.featured {
    grid-row: span 2;
}

.news-image {
    width: 100%;
    background: #f0f0f0;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.3;
}

.news-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.3;
}

.news-content p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.news-date {
    color: #ffa200;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 2rem;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-item h3 {
    margin: 20px 0 15px;
    color: #333;
    font-size: 1.4rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Achievements Section */
.achievements-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffa200;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

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

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.review-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-stars {
    margin-bottom: 20px;
}

.review-item p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.review-author {
    font-weight: 600;
    color: #ffa200;
}

/* Subscription Section */
.subscription-section {
    background: linear-gradient(135deg, #ffa200 0%, #ff0400 100%);
    color: white;
}

.subscription-section .section-title {
    color: white;
}

.subscription-section .section-title::after {
    background: white;
}

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

.subscription-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subscription-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.subscription-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
}

.submit-button {
    background: white;
    color: #ffa200;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: white;
    border: 2px solid #e9ecef;
    color: #333;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #ffa200;
}

.contact-form .submit-button {
    background: linear-gradient(135deg, #ffa200 0%, #ff0400 100%);
    color: white;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: #ffa200;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo span {
    margin-left: 10px;
    color: #ffa200;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
}

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

.social-links a {
    display: block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

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

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

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

.footer-links a:hover {
    color: #ffa200;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(51, 51, 51, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    backdrop-filter: blur(10px);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.4;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cookie-btn.accept-all {
    background: #ffa200;
    color: white;
}

.cookie-btn.accept-all:hover {
    background: #e69100;
}

.cookie-btn.necessary {
    background: #666;
    color: white;
}

.cookie-btn.necessary:hover {
    background: #555;
}

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

.cookie-btn.settings:hover {
    background: #ffa200;
    color: white;
}

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

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

.cookie-modal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.cookie-option {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.cookie-option p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.cookie-modal-buttons .cookie-btn {
    flex: 1;
    padding: 12px 20px;
}

/* Blog Specific Styles */
.blog-hero {
    height: 40vh;
    min-height: 250px;
}

.blog-section {
    padding: 60px 0;
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 300px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 2fr 3fr;
    min-height: 400px;
}

.blog-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-category {
    background: linear-gradient(135deg, #ffa200, #ff0400);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
}

.blog-content h2 {
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.blog-content h2 a,
.blog-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover,
.blog-content h3 a:hover {
    color: #ffa200;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.blog-author {
    font-weight: 600;
}

.blog-date {
    color: #ffa200;
}

.blog-read-time {
    color: #666;
}

.read-more-btn {
    background: linear-gradient(135deg, #ffa200, #ff0400);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 162, 0, 0.3);
}

/* Article Page Styles */
.article-page {
    margin-top: 80px;
}

.article-header {
    background: #f8f9fa;
    padding: 40px 0;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #ffa200;
    text-decoration: none;
}

.breadcrumb span {
    color: #666;
}

.article-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.article-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-category {
    background: linear-gradient(135deg, #ffa200, #ff0400);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #333;
    margin: 0;
}

.article-details {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 0.9rem;
    color: #666;
}

.article-details > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-name {
    font-weight: 600;
    color: #333;
}

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

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.article-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-excerpt {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-left: 5px solid #ffa200;
    border-radius: 0 10px 10px 0;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #333;
    position: relative;
}

.article-body h2::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #ffa200, #ff0400);
    border-radius: 2px;
}

.article-body p {
    margin-bottom: 20px;
    color: #444;
}

.article-highlight {
    background: linear-gradient(135deg, #ffa200, #ff0400);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.article-highlight h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.article-highlight ul {
    list-style: none;
    padding: 0;
}

.article-highlight li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.article-highlight li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 5px;
    font-weight: bold;
}

.article-quote {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    text-align: center;
}

.article-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: #333;
    margin: 20px 0;
}

.article-quote cite {
    font-size: 1rem;
    color: #ffa200;
    font-weight: 600;
    font-style: normal;
}

.article-tags {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.article-tags h3 {
    margin-bottom: 15px;
    color: #333;
}

.tag {
    display: inline-block;
    background: #e9ecef;
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 5px 10px 5px 0;
    transition: background 0.3s ease;
}

.tag:hover {
    background: #ffa200;
    color: white;
}

.article-share {
    margin: 40px 0;
    padding: 30px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    text-align: center;
}

.article-share h3 {
    margin-bottom: 20px;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.share-buttons path {
    fill: #fff;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

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

/* Sidebar Styles */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.related-articles,
.newsletter-signup {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.related-articles h3,
.newsletter-signup h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.3rem;
}

.related-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

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

.related-item a {
    text-decoration: none;
    color: #333;
}

.related-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.related-item:hover h4 {
    color: #ffa200;
}

.related-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.sidebar-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.sidebar-form input:focus {
    outline: none;
    border-color: #ffa200;
}

.sidebar-form button {
    width: 100%;
    background: linear-gradient(135deg, #ffa200, #ff0400);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sidebar-form button:hover {
    transform: translateY(-2px);
}

.nav-link.active {
    color: #ffa200;
    font-weight: 600;
}

/* Legal Page Styles */
.legal-page {
    margin-top: 80px;
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 80px);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.legal-icon {
    margin-bottom: 20px;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
}

.legal-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #888;
}

.legal-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.legal-section {
    padding: 40px;
    border-bottom: 1px solid #e9ecef;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: linear-gradient(135deg, #ffa200, #ff0400);
    border-radius: 2px;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 25px 0 15px;
}

.legal-section h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 20px 0 10px;
    font-weight: 600;
}

.legal-section p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

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

.legal-section li {
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.legal-section li strong {
    color: #333;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ffa200;
}

.contact-method h4 {
    color: #ffa200;
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-method p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

/* Cookie Table Styles */
.cookie-table {
    margin: 30px 0;
}

.cookie-table h3 {
    color: #333;
    margin-bottom: 15px;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.cookie-table td {
    color: #555;
    font-size: 0.9rem;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

/* Footer active link */
.footer-links .active {
    color: #ffa200;
    font-weight: 600;
}

/* Thank You Page Styles */
.thank-you-page {
    margin-top: 80px;
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 80px);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.thank-you-message {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.main-message {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.message-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ffa200;
}

.detail-content h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
}

.detail-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.next-steps {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.next-steps h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
    background: linear-gradient(135deg, #ffa200, #ff0400);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.thank-you-actions {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.action-btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.action-btn:hover {
    transform: translateY(-2px);
}

.action-btn.primary {
    background: linear-gradient(135deg, #ffa200, #ff0400);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 162, 0, 0.3);
}

.action-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(255, 162, 0, 0.4);
}

.action-btn.secondary {
    background: white;
    color: #ffa200;
    border: 2px solid #ffa200;
}

.action-btn.secondary:hover {
    background: #ffa200;
    color: white;
}

.social-follow h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.social-follow p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-follow .social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    display: block;
    padding: 10px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: #e9ecef;
}

.contact-alternative {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.contact-alternative h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

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

.contact-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ffa200;
    text-align: left;
}

.contact-option h4 {
    color: #ffa200;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-option p {
    color: #333;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-option span {
    color: #666;
    font-size: 0.9rem;
}

.newsletter-prompt {
    background: linear-gradient(135deg, #ffa200, #ff0400);
    border-radius: 15px;
    padding: 2px;
    box-shadow: 0 5px 20px rgba(255, 162, 0, 0.3);
}

.newsletter-box {
    background: white;
    padding: 40px;
    border-radius: 13px;
    text-align: center;
}

.newsletter-box h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.newsletter-box p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.inline-form {
    display: flex;
    justify-content: center;
}

.form-group-inline {
    display: flex;
    gap: 10px;
    max-width: 400px;
    width: 100%;
}

.form-group-inline input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group-inline input:focus {
    outline: none;
    border-color: #ffa200;
}

.subscribe-btn {
    background: linear-gradient(135deg, #ffa200, #ff0400);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        margin: 20px 0;
        font-size: 1.2rem;
    }

    .nav-burger {
        display: flex;
    }

    .nav-burger.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .achievements-content,
    .subscription-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .advantage-item,
    .service-item {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-modal-content {
        padding: 20px;
        width: 95%;
    }

    /* Blog Mobile Styles */
    .blog-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    /* Article Mobile Styles */
    .article-title {
        font-size: 2rem;
    }

    .article-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
        order: 2;
    }

    .article-body {
        font-size: 1rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .article-body h2::before {
        display: none;
    }

    .article-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .article-details {
        gap: 15px;
    }

    .share-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .share-btn {
        justify-content: center;
    }

    /* Legal Pages Mobile Styles */
    .legal-header {
        padding: 30px 20px;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-intro {
        font-size: 1.1rem;
    }

    .legal-meta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .legal-section {
        padding: 30px 20px;
    }

    .legal-section h2 {
        font-size: 1.5rem;
        padding-left: 15px;
    }

    .legal-section h2::before {
        left: 0;
        width: 3px;
        height: 20px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cookie-table {
        overflow-x: auto;
    }

    .cookie-table table {
        min-width: 500px;
    }

    /* Thank You Page Mobile Styles */
    .thank-you-title {
        font-size: 2.5rem;
    }

    .thank-you-message,
    .next-steps,
    .thank-you-actions,
    .contact-alternative {
        padding: 30px 20px;
    }

    .message-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .action-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .urgent-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-option {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .form-group-inline {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }

    .subscribe-btn {
        width: 100%;
        padding: 15px 24px;
    }

    .newsletter-box {
        padding: 30px 20px;
    }

    /* General Mobile Improvements */
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .subscription-form,
    .contact-form-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .advantages-grid,
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .subscription-form,
    .contact-form-container {
        padding: 20px;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .legal-page h1 {
        font-size: 1.8rem;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .cookie-table table {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px 10px;
    }
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .subscription-form,
    .contact-form-container {
        padding: 20px;
    }
}