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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #02c3bd;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #02c3bd;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #02c3bd;
    color: white;
}

.btn-primary:hover {
    background: #009f93;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #02c3bd;
    border: 2px solid #02c3bd;
}

.btn-secondary:hover {
    background: #02c3bd;
    color: white;
}

.btn-tertiary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.btn-tertiary:hover {
    background: #e9ecef;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin: 20px 0 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* About Section */
.about {
    background: #f8f9fa;
}

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

.about-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #02c3bd;
    margin-bottom: 10px;
}

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

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

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

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

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

.benefit-item p {
    color: #666;
}

/* Services Preview */
.services-preview {
    background: #f8f9fa;
}

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

.service-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

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

.service-item p {
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    display: inline-block;
    background: #02c3bd;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

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

/* Achievements Section */
.achievements-content {
    max-width: 800px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.achievement-year {
    font-size: 2rem;
    font-weight: bold;
    color: #02c3bd;
    min-width: 80px;
}

.achievement-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.achievement-text p {
    color: #666;
}

/* Blog Section */
.blog {
    background: #f8f9fa;
}

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

.blog-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image svg {
    width: 100%;
    height: 100%;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: #02c3bd;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #009f93;
}

/* Newsletter Section */
.newsletter {
    background: #02c3bd;
    color: white;
}

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

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.newsletter-form .btn-primary{
    color: #fff;
    border: 1px solid #fff;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 195, 189, 0.3);
}

/* 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: 20px;
}

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

.contact-item p {
    color: #666;
    margin: 0;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
}

.checkbox-group a {
    color: #02c3bd;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #02c3bd;
}

.footer-brand p {
    color: #999;
    margin-bottom: 30px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #02c3bd;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    color: #02c3bd;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #02c3bd;
}

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

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

.cookie-text h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.cookie-text p {
    color: #666;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

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

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

.cookie-modal-content {
    background: white;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    overflow: hidden;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-header h2 {
    margin: 0;
    color: #333;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #333;
}

.cookie-modal-body {
    padding: 20px;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 30px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h3 {
    margin: 0;
    color: #333;
}

.cookie-category p {
    color: #666;
    margin: 0;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.services-hero-image {
    display: flex;
    justify-content: center;
}

.services-main {
    padding: 80px 0;
}

.services-grid-detailed {
    display: grid;
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.service-title h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars span {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-features h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0 8px 30px;
    color: #666;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #02c3bd;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-pricing {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.price-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.price-label {
    color: #666;
    font-size: 1.1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #02c3bd;
}

.price-note p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.service-advantages h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
}

.services-cta {
    background: #02c3bd;
    color: white;
    padding: 80px 0;
}

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

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cta-buttons .btn {
    color: #fff;
    border: 1px solid #fff;
}

.nav-menu .active {
    color: #02c3bd;
    font-weight: 600;
}

/* Article Page Styles */
.article-page {
    padding-top: 70px;
}

.article-header {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.article-meta span {
    position: relative;
}

.article-meta span:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -18px;
    color: #ccc;
}

.article-header h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-hero-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.article-hero-image svg {
    width: 100%;
    height: auto;
}

.article-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.article-body {
    background: white;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #02c3bd;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 30px 0 15px 0;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.article-highlight {
    background: linear-gradient(135deg, #02c3bd 0%, #009f93 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.article-highlight h3 {
    margin: 0 0 15px 0;
    color: white;
}

.article-highlight p {
    margin: 0;
    color: white;
    opacity: 0.95;
}

.article-list {
    list-style: none;
    margin: 20px 0;
}

.article-list li {
    padding: 10px 0 10px 30px;
    color: #666;
    position: relative;
    line-height: 1.6;
}

.article-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #02c3bd;
    font-weight: bold;
}

.article-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 10px;
    border-top: 4px solid #02c3bd;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #02c3bd;
    margin-bottom: 10px;
}

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

.article-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid #02c3bd;
    padding-bottom: 10px;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.author-avatar {
    margin-bottom: 20px;
}

.author-text h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.author-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.related-article {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.related-article:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.related-article h4 {
    color: #02c3bd;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.related-article p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.cta-widget {
    background: linear-gradient(135deg, #02c3bd 0%, #009f93 100%);
    color: white;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.cta-widget p {
    color: white;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Legal Pages Styles */
.legal-page {
    padding-top: 70px;
    padding-bottom: 80px;
}

.legal-header {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

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

.legal-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-section {
    margin-bottom: 40px;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #02c3bd;
}

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

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 20px;
}

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

.contact-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #02c3bd;
    margin: 20px 0;
    line-height: 1.6;
    color: #666;
}

.cookie-settings-info {
    background: #02c3bd;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.cookie-settings-info h3 {
    color: white;
    margin-bottom: 15px;
}

.cookie-settings-info p {
    color: white;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Thanks Page Styles */
.thanks-page {
    padding-top: 70px;
    padding-bottom: 80px;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 30px;
}

.thanks-message {
    margin-bottom: 50px;
}

.thanks-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #02c3bd;
    margin-bottom: 15px;
}

.thanks-message p:not(.thanks-title) {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

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

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

.step-item {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 10px;
    position: relative;
    border-top: 4px solid #02c3bd;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #02c3bd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px auto;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

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

.thanks-contact {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.thanks-contact h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.thanks-contact p {
    color: #666;
    margin-bottom: 20px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #02c3bd;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-option:hover {
    color: #009f93;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .about-content,
    .newsletter-content,
    .contact-content,
    .footer-content,
    .article-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .article-meta span::after {
        display: none;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .benefits-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-image{
        display: none;
    }
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}