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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0506;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: #bd6677;
    transition: color 0.3s ease;
}

a:hover {
    color: #d47a8c;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #bd6677;
    color: #ffffff;
    border-color: #bd6677;
}

.btn-primary:hover {
    background-color: #d47a8c;
    border-color: #d47a8c;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #2a2025;
    color: #e0e0e0;
    border-color: #2a2025;
}

.btn-secondary:hover {
    background-color: #3a302d;
    border-color: #3a302d;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #bd6677;
    border-color: #bd6677;
}

.btn-outline:hover {
    background-color: #bd6677;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a0f12, #2a1f22);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-top: 2px solid #bd6677;
}

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

.cookie-text h3 {
    color: #bd6677;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal-content {
    background: linear-gradient(135deg, #1a0f12, #2a1f22);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    border: 2px solid #bd6677;
}

.cookie-modal-content h3 {
    color: #bd6677;
    margin-bottom: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(189, 102, 119, 0.1);
    border-radius: 6px;
    border-left: 3px solid #bd6677;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #bd6677;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: #c0c0c0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 5, 6, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(189, 102, 119, 0.2);
}

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

.nav-brand a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #bd6677;
    text-decoration: none;
}

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

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #bd6677;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #bd6677;
    transition: width 0.3s ease;
}

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

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #bd6677;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0506 0%, #1a0f12 50%, #2a1f22 100%);
    overflow: hidden;
}

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

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #bd6677, #d47a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.6s both;
    font-size: 1.2rem;
    padding: 15px 40px;
}

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

.section-alt {
    background: linear-gradient(135deg, #1a0f12, #2a1f22);
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #bd6677, #d47a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
}

.section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

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

.about-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(189, 102, 119, 0.1), rgba(42, 31, 34, 0.3));
    border-radius: 15px;
    border: 1px solid rgba(189, 102, 119, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(189, 102, 119, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.about-card h3 {
    color: #bd6677;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

.service-card {
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(10, 5, 6, 0.8), rgba(26, 15, 18, 0.6));
    border-radius: 15px;
    border: 1px solid rgba(189, 102, 119, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #bd6677, #d47a8c);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(189, 102, 119, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #bd6677;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.achievement-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(189, 102, 119, 0.15), rgba(26, 15, 18, 0.4));
    border-radius: 15px;
    border: 2px solid rgba(189, 102, 119, 0.3);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: scale(1.05);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #bd6677;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.achievement-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 500;
}

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

.review-card {
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(10, 5, 6, 0.9), rgba(26, 15, 18, 0.7));
    border-radius: 15px;
    border: 1px solid rgba(189, 102, 119, 0.2);
    position: relative;
    transition: transform 0.3s ease;
}

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

.stars {
    color: #bd6677;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #e0e0e0;
    line-height: 1.7;
}

.reviewer strong {
    color: #bd6677;
    display: block;
    margin-bottom: 5px;
}

.reviewer span {
    color: #c0c0c0;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #bd6677, #d47a8c);
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(10, 5, 6, 0.2);
}

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

.newsletter-form .btn {
    white-space: nowrap;
    align-self: flex-start;
    background-color: #0a0506;
    border-color: #0a0506;
    color: #ffffff;
}

.newsletter-form .btn:hover {
    background-color: #1a0f12;
    border-color: #1a0f12;
}

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

.contact-info {
    padding: 20px 0;
}

.contact-item {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(189, 102, 119, 0.1), rgba(26, 15, 18, 0.3));
    border-radius: 10px;
    border-left: 4px solid #bd6677;
}

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

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

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

.social-links a {
    padding: 8px 15px;
    background-color: rgba(189, 102, 119, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(189, 102, 119, 0.3);
}

.social-links a:hover {
    background-color: #bd6677;
    color: #ffffff;
}

.contact-form {
    background: linear-gradient(135deg, rgba(189, 102, 119, 0.1), rgba(26, 15, 18, 0.3));
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(189, 102, 119, 0.2);
}

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

.contact-form input,
.contact-form textarea {
    background-color: rgba(10, 5, 6, 0.7);
    border: 1px solid rgba(189, 102, 119, 0.3);
    color: #e0e0e0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #bd6677;
    background-color: rgba(10, 5, 6, 0.9);
    box-shadow: 0 0 0 2px rgba(189, 102, 119, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0506, #1a0f12);
    padding: 60px 0 20px;
    border-top: 2px solid rgba(189, 102, 119, 0.3);
}

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

.footer-section h3 {
    color: #bd6677;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer-section p {
    color: #c0c0c0;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: #c0c0c0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #bd6677;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(189, 102, 119, 0.2);
    color: #c0c0c0;
}

/* Blog Styles */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0506, #1a0f12);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #bd6677, #d47a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.blog-card {
    background: linear-gradient(135deg, rgba(189, 102, 119, 0.05), rgba(26, 15, 18, 0.3));
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(189, 102, 119, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(189, 102, 119, 0.2);
}

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-date {
    color: #bd6677;
}

.blog-category {
    color: #c0c0c0;
    background: rgba(189, 102, 119, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.blog-content h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog-content h2 a {
    color: inherit;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #bd6677;
}

.read-more {
    color: #bd6677;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #d47a8c;
    transform: translateX(5px);
}

/* Article Styles */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0506, #1a0f12);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.back-link {
    color: #bd6677;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #d47a8c;
    transform: translateX(-5px);
}

.article-details {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
}

.article-date {
    color: #bd6677;
}

.article-category {
    color: #c0c0c0;
    background: rgba(189, 102, 119, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(45deg, #bd6677, #d47a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-image {
    text-align: center;
    margin-bottom: 40px;
}

.article-image img {
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(189, 102, 119, 0.3);
}

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

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body .lead {
    font-size: 1.3rem;
    color: #bd6677;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 20px;
    background: rgba(189, 102, 119, 0.1);
    border-radius: 10px;
    border-left: 4px solid #bd6677;
}

.article-body h2 {
    color: #bd6677;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.article-body h3 {
    color: #d47a8c;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 30px;
    margin: 30px 0;
    align-items: start;
}

.content-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(189, 102, 119, 0.3);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(189, 102, 119, 0.15), rgba(26, 15, 18, 0.4));
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #bd6677;
    margin: 30px 0;
}

.highlight-box h3 {
    color: #bd6677;
    margin-bottom: 15px;
}

.highlight-box ul {
    margin: 0;
    padding-left: 20px;
}

.highlight-box li {
    margin-bottom: 8px;
    color: #e0e0e0;
}

.quote-box {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(10, 5, 6, 0.8), rgba(26, 15, 18, 0.6));
    border-radius: 15px;
    border: 2px solid rgba(189, 102, 119, 0.3);
}

.quote-box blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #bd6677;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.quote-box cite {
    color: #c0c0c0;
    font-size: 1rem;
    display: block;
}

.related-articles {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0f12, #2a1f22);
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #bd6677, #d47a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.related-card {
    background: linear-gradient(135deg, rgba(189, 102, 119, 0.1), rgba(26, 15, 18, 0.3));
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(189, 102, 119, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.related-card h3 {
    font-size: 1.3rem;
    margin: 0;
}

.related-card h3 a {
    color: inherit;
    transition: color 0.3s ease;
}

.related-card h3 a:hover {
    color: #bd6677;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: #bd6677;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.legal-text h3 {
    color: #d47a8c;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-text ul {
    margin: 1rem 0;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 8px;
    color: #e0e0e0;
}

.contact-details {
    background: rgba(189, 102, 119, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #bd6677;
    margin: 20px 0;
}

.cookie-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(189, 102, 119, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(189, 102, 119, 0.2);
}

.cookie-table th {
    background: rgba(189, 102, 119, 0.2);
    color: #bd6677;
    font-weight: 600;
}

.cookie-table td {
    color: #e0e0e0;
}

.cookie-settings-btn {
    text-align: center;
    margin: 30px 0;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

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

.thank-you-image {
    width: 120px;
    height: 120px;
}

.thank-you-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #bd6677, #d47a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-message {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
}

.thank-you-details {
    margin: 50px 0;
}

.thank-you-details h2 {
    color: #bd6677;
    margin-bottom: 30px;
}

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

.step {
    background: linear-gradient(135deg, rgba(189, 102, 119, 0.1), rgba(26, 15, 18, 0.3));
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(189, 102, 119, 0.2);
}

.step-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.step h3 {
    color: #bd6677;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step p {
    color: #c0c0c0;
    margin: 0;
    font-size: 1rem;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.thank-you-info {
    background: linear-gradient(135deg, rgba(189, 102, 119, 0.1), rgba(26, 15, 18, 0.3));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(189, 102, 119, 0.2);
    margin-top: 50px;
}

.thank-you-info h3 {
    color: #bd6677;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.contact-item {
    background: rgba(189, 102, 119, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.related-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0f12, #2a1f22);
}

.related-content h2 {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #bd6677, #d47a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.related-content .related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

.related-content .related-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.card-content h3 {
    color: #bd6677;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card-content p {
    color: #c0c0c0;
    margin-bottom: 20px;
}

.card-link {
    color: #bd6677;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #d47a8c;
    transform: translateY(-2px);
}

.social-section {
    padding: 60px 0;
    text-align: center;
}

.social-section h2 {
    margin-bottom: 15px;
    background: linear-gradient(45deg, #bd6677, #d47a8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-section p {
    color: #c0c0c0;
    margin-bottom: 30px;
}

.social-section .social-links {
    justify-content: center;
    gap: 20px;
}

.social-section .social-link {
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(189, 102, 119, 0.2), rgba(26, 15, 18, 0.4));
    border-radius: 8px;
    border: 1px solid rgba(189, 102, 119, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-section .social-link:hover {
    background: linear-gradient(135deg, #bd6677, #d47a8c);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 5, 6, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid rgba(189, 102, 119, 0.2);
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .article-header h1 {
        font-size: 2.2rem;
    }

    .thank-you-section h1 {
        font-size: 2.5rem;
    }

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

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-image {
        order: -1;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

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

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
    }

    .social-section .social-links {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .article-header h1 {
        font-size: 1.8rem;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .about-card,
    .service-card,
    .achievement-item,
    .review-card {
        padding: 20px 15px;
    }

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

    .article-body .lead {
        font-size: 1.1rem;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .newsletter,
    .social-section,
    .thank-you-actions,
    .related-content {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero {
        height: auto;
        padding: 50px 0;
    }

    .section {
        padding: 30px 0;
    }

    a {
        color: black !important;
        text-decoration: underline;
    }
}
