/* 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: #FAFAFA;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

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

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

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

.btn-hero {
    background: linear-gradient(135deg, #6A994E, #A7C957);
    color: white;
    font-size: 18px;
    padding: 16px 32px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(106, 153, 78, 0.4);
}

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

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

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

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

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

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

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6B35;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

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

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

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

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

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

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

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #2C3E50;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.services-overview {
    background-color: white;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #E9ECEF;
}

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

.service-card i {
    font-size: 3rem;
    color: #FF6B35;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

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

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefits-list i {
    color: #6A994E;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

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

.testimonial-card {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #FF6B35;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author i {
    font-size: 2rem;
    color: #6A994E;
}

.testimonial-author strong {
    display: block;
    color: #2C3E50;
}

.testimonial-author span {
    color: #777;
    font-size: 0.9rem;
}

/* Statistics */
.statistics {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-item p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* Contact Preview */
.contact-preview {
    background-color: white;
    text-align: center;
}

.contact-preview h2 {
    margin-bottom: 3rem;
    color: #2C3E50;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.contact-item i {
    font-size: 2rem;
    color: #FF6B35;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

/* Blog Preview */
.blog-preview {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.blog-icon i {
    font-size: 1.5rem;
    color: white;
}

.read-more {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

.blog-center {
    text-align: center;
}

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

.footer p {
    color: white;
}

.footer-section p {
    color: white;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FF6B35;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495E;
    color: white;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

.page-header p {
    font-size: 1.2rem;
    color: #555;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 80px;
    padding: 60px 0;
}

.service-detail:nth-child(even) {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail.reverse .service-content {
    direction: rtl;
}

.service-detail.reverse .service-text {
    direction: ltr;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-features i {
    color: #6A994E;
    font-size: 1.2rem;
}

.service-price {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.duration {
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-icon-large {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-cta {
    background: linear-gradient(135deg, #6A994E, #A7C957);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.services-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.services-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2C3E50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

.contact-card a {
    color: #FF6B35;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card small {
    color: #777;
    font-size: 0.9rem;
}

.contact-card .social-links {
    justify-content: flex-start;
}

.contact-card .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #FF6B35;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-card .social-links a:hover {
    background-color: #6A994E;
    transform: scale(1.1);
    text-decoration: none;
}

.quick-contact {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    text-align: center;
    padding: 60px 0;
}

.quick-form {
    max-width: 500px;
    margin: 0 auto;
}

.quick-form-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.quick-form-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
}

.map-section {
    padding: 80px 0;
    background: white;
}

.map-placeholder {
    position: relative;
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-width: 300px;
}

.map-details h3 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

.map-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-section h1 {
    color: #6A994E;
    margin-bottom: 1.5rem;
}

.thank-you-section h2 {
    color: #2C3E50;
    margin-bottom: 1rem;
}

.submitted-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.info-item {
    padding: 0.5rem 0;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.next-steps {
    margin: 3rem 0;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.contact-reminder {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #FF6B35;
}

.contact-reminder a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: bold;
}

.related-content {
    padding: 80px 0;
    background: white;
}

.related-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

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

.content-card {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.content-card i {
    font-size: 3rem;
    color: #FF6B35;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FF6B35;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-buttons a:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    section {
        padding: 60px 0;
    }
    
    .contact-grid,
    .service-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-form-group {
        flex-direction: column;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

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

.mv-item {
    text-align: center;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

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

.team-member {
    text-align: center;
    background: #F8F9FA;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.team-member h3 {
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.team-member h4 {
    color: #FF6B35;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.member-skills span {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.achievements {
    padding: 80px 0;
    background: linear-gradient(135deg, #6A994E, #A7C957);
    color: white;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.achievement i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.achievement h3 {
    color: white;
    margin-bottom: 1rem;
}

.achievement p {
    color: rgba(255,255,255,0.9);
}

.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

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

.reason {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

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

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

.about-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.about-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Blog Styles */
.featured-article {
    padding: 80px 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-label {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-content h2 {
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    color: #777;
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-articles {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.blog-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

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

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

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

.article-content {
    padding: 2rem;
}

.article-category {
    background: #6A994E;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: white;
    text-align: center;
}

.newsletter-signup h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-signup p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.newsletter-privacy a {
    color: #FF6B35;
}

.related-topics {
    padding: 80px 0;
    background: white;
}

.related-topics h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

.topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.topic-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #F8F9FA;
    border: 2px solid #E9ECEF;
    border-radius: 25px;
    text-decoration: none;
    color: #2C3E50;
    transition: all 0.3s ease;
}

.topic-tag:hover {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

@media (max-width: 768px) {
    .story-content,
    .featured-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-input {
        flex-direction: column;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reason {
        flex-direction: column;
        text-align: center;
    }
}

/* Article Styles */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-breadcrumb a {
    color: #6A994E;
    text-decoration: none;
}

.article-breadcrumb span {
    color: #777;
}

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

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
}

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

.article-body h2 {
    margin: 2.5rem 0 1.5rem;
    color: #2C3E50;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2C3E50;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.tip-box, .technique-box, .strategy-box, .body-language-tips, .mindset-transformation, .conclusion-box {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #FF6B35;
}

.tip-box h4, .technique-box h4, .strategy-box h4, .body-language-tips h4, .mindset-transformation h4 {
    color: #FF6B35;
    margin-bottom: 1rem;
}

.conclusion-box {
    background: linear-gradient(135deg, #6A994E, #A7C957);
    color: white;
    border-left: none;
}

.conclusion-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checklist-item i {
    color: #6A994E;
}

.transformation-examples {
    margin-top: 1rem;
}

.transformation-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
}

.negative {
    color: #DC3545;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.positive {
    color: #6A994E;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow {
    color: #FF6B35;
    font-size: 1.2rem;
}

.article-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #E9ECEF;
}

.share-article h4, .article-cta h4 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

.article-sidebar {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.author-bio {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #E9ECEF;
}

.author-bio h4 {
    margin: 1rem 0 0.5rem;
    color: #2C3E50;
}

.author-bio p {
    font-size: 0.9rem;
    color: #777;
}

.related-articles {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #E9ECEF;
}

.related-articles h4 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #2C3E50;
    transition: transform 0.3s ease;
}

.related-item:hover {
    transform: translateX(5px);
    color: #FF6B35;
}

.related-item i {
    color: #6A994E;
    width: 20px;
}

.newsletter-sidebar h4 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

.newsletter-sidebar p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #777;
}

.newsletter-sidebar form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-sidebar input[type="email"] {
    padding: 0.8rem;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    font-size: 0.9rem;
}

.newsletter-sidebar button {
    padding: 0.8rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-actions {
        grid-template-columns: 1fr;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .transformation-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .arrow {
        order: 2;
    }
    
    .positive {
        order: 3;
    }
}

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

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

.legal-text h2 {
    margin: 2.5rem 0 1.5rem;
    color: #2C3E50;
    border-bottom: 2px solid #FF6B35;
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    margin: 2rem 0 1rem;
    color: #2C3E50;
}

.legal-text h4 {
    margin: 1.5rem 0 0.8rem;
    color: #6A994E;
}

.contact-box {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
    margin: 1.5rem 0;
}

.legal-contact {
    background: linear-gradient(135deg, #6A994E, #A7C957);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.legal-contact h3 {
    color: white;
    margin-bottom: 1rem;
}

.legal-contact p {
    color: rgba(255,255,255,0.9);
}

.last-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #E9ECEF;
    color: #777;
    font-style: italic;
}