/* Styles extracted from success-stories.html */

/* Base styles */
body  {
  
    font-family: "Open Sans", sans-serif;
  
    margin: 0;
  
    padding: 0;
  
    color: #333;
  
    line-height: 1.6
    }


h1, h2, h3, h4, h5, h6  {
  
    font-family: "Montserrat", sans-serif
    }


.container  {
  
    width: 100%;
  
    max-width: 1200px;
  
    margin: 0 auto;
  
    padding: 0 1rem
    }


/* Header styles */
header  {
  
    position: sticky;
  
    top: 0;
  
    z-index: 1000;
  
    display: flex;
  
    background-color: #2E7D32;
  
    color: white;
  
    padding: 1rem 0;
  
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
    }


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


.logo  {
  
    display: flex;
  
    align-items: center;
  
    text-decoration: none;
  
    color: white
    }


.logo img  {
  
    width: 40px;
  
    height: 40px;
  
    margin-right: 10px
    }


.logo span  {
  
    font-size: 1.5rem;
  
    font-weight: bold
    }


nav ul  {
  
    display: flex;
  
    list-style: none;
  
    margin: 0;
  
    padding: 0
    }


nav ul li  {
  
    margin-left: 1.5rem
    }


nav ul li a  {
  
    color: white;
  
    text-decoration: none;
  
    transition: color 0.3s
    }


nav ul li a:hover  {
  
    color: #FFC107
    }


.mobile-menu-btn  {
  
    display: none;
  
    background: none;
  
    border: none;
  
    color: white;
  
    font-size: 1.5rem;
  
    cursor: pointer
    }


/* Hero section */
.hero  {
  
    background-color: #4CAF50;
  
    color: white;
  
    padding: 4rem 0;
  
    position: relative;
  
    overflow: hidden
    }


.hero-content  {
  
    max-width: 600px;
  
    position: relative;
  
    z-index: 1
    }


.hero h1  {
  
    font-size: 2.5rem;
  
    margin-bottom: 1rem
    }


.hero p  {
  
    font-size: 1.2rem;
  
    margin-bottom: 2rem
    }


.btn  {
  
    display: inline-block;
  
    padding: 0.75rem 1.5rem;
  
    border-radius: 0.375rem;
  
    font-weight: 600;
  
    text-align: center;
  
    text-decoration: none;
  
    transition: all 0.3s ease
    }


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


.btn-primary:hover  {
  
    background-color: #F4511E
    }


/* Blog section */
.blog-section  {
  
    padding: 4rem 0
    }


.blog-section h2  {
  
    color: #2E7D32;
  
    margin-bottom: 2rem;
  
    text-align: center
    }


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


.blog-card  {
  
    background-color: white;
  
    border-radius: 0.5rem;
  
    overflow: hidden;
  
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
    display: flex;
  
    flex-direction: column;
  
    transition: transform 0.3s ease
    }


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


.blog-image  {
  
    height: 200px;
  
    background-color: #e0e0e0
    }


.blog-image img  {
  
    width: 100%;
  
    height: 100%;
  
    object-fit: cover
    }


.blog-content  {
  
    padding: 1.5rem;
  
    flex-grow: 1;
  
    display: flex;
  
    flex-direction: column
    }


.blog-content h3  {
  
    color: #2E7D32;
  
    margin-bottom: 0.5rem;
  
    font-size: 1.25rem
    }


.blog-meta  {
  
    color: #666;
  
    font-size: 0.875rem;
  
    margin-bottom: 1rem;
  
    display: flex;
  
    align-items: center
    }


.blog-category  {
  
    background-color: #4CAF50;
  
    color: white;
  
    padding: 0.25rem 0.75rem;
  
    border-radius: 1rem;
  
    font-size: 0.75rem;
  
    margin-right: 1rem
    }


.blog-date  {
  
    color: #666
    }


.blog-excerpt  {
  
    margin-bottom: 1.5rem
    }


.blog-footer  {
  
    margin-top: auto
    }


/* Sidebar */
.sidebar  {
  
    background-color: #f5f5f5;
  
    padding: 2rem;
  
    border-radius: 0.5rem
    }


.sidebar h3  {
  
    color: #2E7D32;
  
    margin-bottom: 1.5rem;
  
    font-size: 1.25rem
    }


.sidebar-section  {
  
    margin-bottom: 2rem
    }


.sidebar-section:last-child  {
  
    margin-bottom: 0
    }


.categories-list  {
  
    list-style: none;
  
    padding: 0;
  
    margin: 0
    }


.categories-list li  {
  
    margin-bottom: 0.75rem
    }


.categories-list li a  {
  
    color: #333;
  
    text-decoration: none;
  
    display: flex;
  
    justify-content: space-between;
  
    transition: color 0.3s
    }


.categories-list li a:hover  {
  
    color: #2E7D32
    }


.categories-list li a span  {
  
    background-color: #e0e0e0;
  
    color: #333;
  
    padding: 0.125rem 0.5rem;
  
    border-radius: 1rem;
  
    font-size: 0.75rem
    }


.recent-posts  {
  
    list-style: none;
  
    padding: 0;
  
    margin: 0
    }


.recent-posts li  {
  
    margin-bottom: 1rem;
  
    padding-bottom: 1rem;
  
    border-bottom: 1px solid #e0e0e0
    }


.recent-posts li:last-child  {
  
    margin-bottom: 0;
  
    padding-bottom: 0;
  
    border-bottom: none
    }


.recent-posts li a  {
  
    color: #333;
  
    text-decoration: none;
  
    font-weight: 600;
  
    transition: color 0.3s
    }


.recent-posts li a:hover  {
  
    color: #2E7D32
    }


.recent-posts li .post-date  {
  
    display: block;
  
    color: #666;
  
    font-size: 0.875rem;
  
    margin-top: 0.25rem
    }


.tag-cloud  {
  
    display: flex;
  
    flex-wrap: wrap;
  
    gap: 0.5rem
    }


.tag  {
  
    background-color: #e0e0e0;
  
    color: #333;
  
    padding: 0.25rem 0.75rem;
  
    border-radius: 1rem;
  
    font-size: 0.875rem;
  
    text-decoration: none;
  
    transition: all 0.3s ease
    }


.tag:hover  {
  
    background-color: #4CAF50;
  
    color: white
    }


/* Pagination */
.pagination  {
  
    display: flex;
  
    justify-content: center;
  
    margin-top: 2rem
    }


.pagination-link  {
  
    display: inline-block;
  
    padding: 0.5rem 1rem;
  
    margin: 0 0.25rem;
  
    border-radius: 0.25rem;
  
    background-color: #f5f5f5;
  
    color: #333;
  
    text-decoration: none;
  
    transition: all 0.3s ease
    }


.pagination-link:hover  {
  
    background-color: #4CAF50;
  
    color: white
    }


.pagination-link.active  {
  
    background-color: #2E7D32;
  
    color: white
    }


/* Newsletter section */
.newsletter-section  {
  
    padding: 4rem 0;
  
    background-color: #2E7D32;
  
    color: white;
  
    text-align: center
    }


.newsletter-section h2  {
  
    margin-bottom: 1.5rem
    }


.newsletter-section p  {
  
    margin-bottom: 2rem;
  
    max-width: 800px;
  
    margin-left: auto;
  
    margin-right: auto
    }


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


.newsletter-input  {
  
    flex: 1;
  
    padding: 0.75rem 1rem;
  
    border: none;
  
    border-radius: 0.375rem 0 0 0.375rem;
  
    font-size: 1rem
    }


.newsletter-button  {
  
    background-color: #FF7043;
  
    color: white;
  
    border: none;
  
    padding: 0.75rem 1.5rem;
  
    border-radius: 0 0.375rem 0.375rem 0;
  
    font-weight: 600;
  
    cursor: pointer;
  
    transition: background-color 0.3s
    }


.newsletter-button:hover  {
  
    background-color: #F4511E
    }


/* Footer styles */
footer  {
  
    background-color: #2E7D32;
  
    color: white;
  
    padding: 4rem 0 2rem
    }


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


footer h4  {
  
    font-size: 1.25rem;
  
    margin-bottom: 1.25rem
    }


footer ul  {
  
    list-style: none;
  
    padding: 0;
  
    margin: 0
    }


footer ul li  {
  
    margin-bottom: 0.75rem
    }


footer ul li a  {
  
    color: #e0e0e0;
  
    text-decoration: none;
  
    transition: color 0.3s
    }


footer ul li a:hover  {
  
    color: #FFC107
    }


.footer-contact  {
  
    display: flex;
  
    align-items: center;
  
    margin-bottom: 1rem
    }


.footer-contact img  {
  
    width: 48px;
  
    height: 48px;
  
    margin-right: 1rem
    }


.footer-contact span  {
  
    font-size: 1.5rem;
  
    font-weight: bold
    }


.language-selector  {
  
    position: relative;
  
    margin-top: 1rem
    }


.language-selector select  {
  
    appearance: none;
  
    background-color: transparent;
  
    border: 1px solid rgba(255, 255, 255, 0.3);
  
    color: white;
  
    padding: 0.5rem 2rem 0.5rem 1rem;
  
    border-radius: 0.25rem;
  
    cursor: pointer;
  
    width: 100%
    }


.language-selector::after  {
  
    content: "";
  
    position: absolute;
  
    right: 1rem;
  
    top: 50%;
  
    transform: translatey(-50%);
  
    width: 0;
  
    height: 0;
  
    border-left: 5px solid transparent;
  
    border-right: 5px solid transparent;
  
    border-top: 5px solid white;
  
    pointer-events: none
    }


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


/* Layout */
.content-grid  {
  
    display: grid;
  
    grid-template-columns: 3fr 1fr;
  
    gap: 2rem
    }


/* Responsive styles */
@media (max-width: 768px)  {
  
    .header-container  {
  
        flex-wrap: wrap
        }


    .mobile-menu-btn  {
  
        display: block
        }


    nav  {
  
        flex-basis: 100%;
  
        display: none
        }


    nav.active  {
  
        display: block;
  
        margin-top: 1rem
        }


    nav ul  {
  
        flex-direction: column
        }


    nav ul li  {
  
        margin: 0.5rem 0
        }


    .hero h1  {
  
        font-size: 2rem
        }


    .content-grid  {
  
        grid-template-columns: 1fr
        }


    .newsletter-form  {
  
        flex-direction: column
        }


    .newsletter-input  {
  
        border-radius: 0.375rem;
  
        margin-bottom: 1rem
        }


    .newsletter-button  {
  
        border-radius: 0.375rem
        }


    }