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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #d63384, #e83e8c);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #d63384;
    border: 2px solid #d63384;
}

.btn-outline:hover {
    background: #d63384;
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-text i {
    font-size: 24px;
    color: #f39c12;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(214, 51, 132, 0.1);
}

.navbar {
    padding: 15px 0;
}

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

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

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #d63384;
}

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

.nav-link {
    font-weight: 500;
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #d63384;
    background: rgba(214, 51, 132, 0.1);
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c3e50;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffeef8, #f8f9fa);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffeef8, #f8f9fa);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(214, 51, 132, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d63384, #e83e8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d63384;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

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

.service-card {
    background: linear-gradient(135deg, #ffeef8, #f8f9fa);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(214, 51, 132, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(214, 51, 132, 0.15);
    border-color: rgba(214, 51, 132, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d63384, #e83e8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.rating i {
    color: #ffc107;
    font-size: 20px;
}

.rating span {
    margin-left: 10px;
    color: #6c757d;
    font-weight: 500;
}

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

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

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

.review-stars {
    color: #ffc107;
    margin-bottom: 15px;
}

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

.review-author strong {
    color: #2c3e50;
    display: block;
}

.review-author span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #d63384, #e83e8c);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form .btn {
    white-space: nowrap;
    background: white;
    color: #d63384;
}

.newsletter-form .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-note a {
    color: white;
    text-decoration: underline;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.view-all {
    color: #d63384;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #b02a5b;
}

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

.blog-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #ffeef8, #f8f9fa);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(214, 51, 132, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(214, 51, 132, 0.1);
}

.blog-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d63384, #e83e8c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

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

.blog-content h3 a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #d63384;
}

.blog-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #999;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #d63384;
}

.footer-brand p {
    color: #bdc3c7;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(214, 51, 132, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

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

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

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

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

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

.footer-links a:hover {
    color: white;
}

.contact-info p {
    color: #bdc3c7;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #d63384;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .newsletter-text h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Styles for Other Pages */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #d63384;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #ffeef8, #f8f9fa);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.content-section p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-section li {
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Map Container */
.map-container {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-info {
    background: #f8f9fa;
    padding: 15px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.map-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-content {
    padding: 30px 0 60px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(214, 51, 132, 0.1);
}

.document-info {
    background: linear-gradient(135deg, #ffeef8, #f8f9fa);
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #d63384;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.document-info p {
    color: #495057;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.legal-section {
    margin-bottom: 25px;
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #d63384, #e83e8c);
    color: white;
    border-radius: 8px;
    font-weight: 600;
}

.legal-section h3 {
    color: #d63384;
    font-size: 1.1rem;
    margin: 18px 0 8px;
    font-weight: 600;
}

.legal-section p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

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

.legal-section li {
    color: #6c757d;
    margin-bottom: 6px;
    line-height: 1.5;
    font-size: 0.9rem;
}

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

.contact-details {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 3px solid #d63384;
}

.contact-details p {
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.contact-details ul {
    margin: 10px 0;
}

.purposes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.purpose-card {
    background: #ffeef8;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(214, 51, 132, 0.2);
    transition: transform 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-2px);
}

.purpose-card i {
    font-size: 2rem;
    color: #d63384;
    margin-bottom: 10px;
}

.purpose-card h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
}

.purpose-card p {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.legal-base {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 15px 0;
}

.right-item {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #2196f3;
}

.right-item h5 {
    color: #1976d2;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.right-item p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.contact-info {
    background: linear-gradient(135deg, #ffeef8, #f0f8ff);
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    border: 1px solid rgba(214, 51, 132, 0.2);
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.contact-info p {
    color: #6c757d;
    margin: 4px 0;
    font-size: 0.9rem;
}

/* Blog Article Styles */
.article-header {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, #ffeef8, #f8f9fa);
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.article-breadcrumb a {
    color: #d63384;
    text-decoration: none;
    font-weight: 500;
}

.article-breadcrumb a:hover {
    text-decoration: underline;
}

.article-breadcrumb i {
    color: #6c757d;
    font-size: 0.7rem;
}

.article-header h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar i {
    font-size: 1.5rem;
    color: #d63384;
}

.author-name {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 5px;
}

.author-title {
    color: #6c757d;
    font-size: 0.8rem;
}

.article-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.article-details span {
    color: #6c757d;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-details i {
    font-size: 0.7rem;
}

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

.article-body {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(214, 51, 132, 0.1);
}

.article-intro {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #ffeef8, #f8f9fa);
    border-radius: 10px;
    border-left: 4px solid #d63384;
    font-weight: 500;
}

.article-section {
    margin-bottom: 30px;
}

.article-section h2 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 15px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #d63384, #e83e8c);
    color: white;
    border-radius: 8px;
    font-weight: 600;
}

.article-section h3 {
    color: #d63384;
    font-size: 1.2rem;
    margin: 20px 0 10px;
    font-weight: 600;
}

.article-section p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

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

.article-section li {
    color: #6c757d;
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.technique-step {
    background: linear-gradient(135deg, #ffeef8, #fff5f5);
    padding: 18px 22px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #d63384;
    border: 1px solid rgba(214, 51, 132, 0.2);
}

.technique-step h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.technique-step p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    padding: 18px 22px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.highlight-box h4 {
    color: #1976d2;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.highlight-box p {
    margin: 0;
    color: #424242;
    font-size: 0.9rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.method-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.method-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1rem;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.method-steps span {
    font-size: 0.8rem;
    color: #6c757d;
    padding: 4px 8px;
    background: #e9ecef;
    border-radius: 4px;
}

.closing-tips, .errors-section {
    margin: 20px 0;
}

.tip-item, .error-item {
    background: #f8f9fa;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border-left: 3px solid #28a745;
}

.error-item {
    border-left-color: #ffc107;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.error-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.error-title i {
    color: #ffc107;
}

.error-title h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1rem;
}

.project-specs {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.spec-item {
    background: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
}

.project-instructions {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.project-instructions h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.project-instructions ol {
    padding-left: 20px;
}

.project-instructions li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.conclusion {
    background: linear-gradient(135deg, #ffeef8, #f8f9fa);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid rgba(214, 51, 132, 0.2);
}

.conclusion h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.article-tags {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.article-tags h4 {
    color: #495057;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.tag {
    background: linear-gradient(135deg, #d63384, #e83e8c);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-block;
    margin: 4px 6px 4px 0;
    transition: transform 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, #b02a5b, #d63384);
    color: white;
    transform: translateY(-1px);
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #d63384;
    background: #f8f9fa;
}

/* Blog Article Sidebar */
.article-sidebar {
    flex: 0 0 300px;
    margin-left: 40px;
}

.author-bio, .related-articles {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.bio-avatar {
    text-align: center;
    margin-bottom: 15px;
}

.bio-avatar i {
    font-size: 3rem;
    color: #d63384;
}

.bio-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

.bio-content p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: center;
}

.related-articles h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.related-item:hover {
    background: #f8f9fa;
}

.related-item i {
    color: #d63384;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.related-item a {
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
}

.related-item a:hover {
    color: #d63384;
}

/* Article Content Layout */
.article-content .container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
}

.article-body {
    flex: 1;
    min-width: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .article-content .container {
        flex-direction: column;
    }
    
    .article-sidebar {
        margin-left: 0;
        flex: none;
    }
}
