/* =================== 
   Table of Contents
   =================== 
1. Base Styles
2. Typography
3. Layout & Grid
4. Header & Navigation
5. Hero Section
6. About Section
7. Services Section
8. Pricing Section
9. Testimonials Section
10. Blog Section
11. Contact Section
12. Footer
13. Buttons & Forms
14. Blog Pages Styles
15. Legal Pages Styles
16. Thank You Page
17. Responsive Styles
*/

/* =================== 
   1. Base Styles
   =================== */
:root {
    --primary-color: #9ca813;
    --primary-dark: #878e0f;
    --primary-light: #b6c230;
    --secondary-color: #334155;
    --text-color: #334155;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: var(--bg-light);
}

hr {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin: 2rem 0;
}

/* =================== 
   2. Typography
   =================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

h2 {
    font-size: 2.25rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* =================== 
   3. Layout & Grid
   =================== */
.flex {
    display: flex;
}

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

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* =================== 
   4. Header & Navigation
   =================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-color);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

nav ul {
    display: flex;
    gap: 2rem;
}
nav ul li {
    display: flex;
    align-items: center;
}
nav ul li a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    transform: scaleX(1);
}

nav ul li a.btn-primary {
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
}

nav ul li a.btn-primary::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* =================== 
   5. Hero Section
   =================== */
.hero {
    background-color: var(--bg-light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(156, 168, 19, 0.1) 0%, rgba(156, 168, 19, 0.05) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

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

/* =================== 
   6. About Section
   =================== */
.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
}

/* =================== 
   7. Services Section
   =================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    margin-bottom: 1.5rem;
    width: 64px;
    height: 64px;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    font-weight: 500;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* =================== 
   8. Pricing Section
   =================== */
.pricing-table {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-column {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.pricing-header h3 {
    color: white;
    margin-bottom: 0;
}

.pricing-body {
    padding: 1.5rem;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-body ul li {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
}

.pricing-body ul li:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-note {
    text-align: center;
}

.pricing-note p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
}

/* =================== 
   9. Testimonials Section
   =================== */
.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem 0;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 auto;
    width: calc(33.333% - 1.333rem);
    min-width: 300px;
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.testimonial-icon {
    align-self: flex-start;
    margin-bottom: 1rem;
}

.testimonial-icon img {
    width: 40px;
    height: 40px;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* =================== 
   10. Blog Section
   =================== */
.blog-preview .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.blog-link {
    font-weight: 500;
    color: var(--primary-color);
}

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

/* =================== 
   11. Contact Section
   =================== */
.contact {
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-item h4 {
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.social-media {
    margin-top: 2rem;
}

.social-media h4 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.subscription-form {
    flex: 1;
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.subscription-form h3 {
    margin-bottom: 1rem;
}

.subscription-form p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* =================== 
   12. Footer
   =================== */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-detail svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

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

/* =================== 
   13. Buttons & Forms
   =================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-color);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(156, 168, 19, 0.2);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.875rem;
}

button {
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
    border: none;
}

/* =================== 
   14. Blog Pages Styles
   =================== */
.blog-header {
    background-color: var(--bg-light);
    padding: 5rem 0;
    text-align: center;
}

.blog-header h1 {
    margin-bottom: 1rem;
}

.blog-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

.blog-main {
    padding: 5rem 0;
}

.blog-main .container {
    display: grid;
    grid-template-columns: 200px 1fr 300px;
    gap: 3rem;
}

.blog-filter h3 {
    margin-bottom: 1.5rem;
}

.blog-filter ul li {
    margin-bottom: 0.75rem;
}

.blog-filter ul li a {
    color: var(--text-color);
    transition: var(--transition);
}

.blog-filter ul li a:hover,
.blog-filter ul li a.active {
    color: var(--primary-color);
}

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-article {
    display: flex;
    gap: 2rem;
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.article-image {
    flex: 0 0 40%;
}

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

.article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-date,
.article-category,
.article-author {
    font-size: 0.875rem;
    color: var(--text-light);
}

.article-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.article-content .btn-secondary {
    align-self: flex-start;
    margin-top: auto;
}

.sidebar-widget {
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.sidebar-widget h3 {
    margin-bottom: 1.25rem;
}

.popular-posts ul li,
.related-posts ul li {
    margin-bottom: 1.25rem;
}

.popular-posts ul li:last-child,
.related-posts ul li:last-child {
    margin-bottom: 0;
}

.popular-posts a,
.related-posts a {
    display: flex;
    gap: 1rem;
}

.post-image {
    flex: 0 0 80px;
    height: 80px;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

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

.post-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.post-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.popular-posts a:hover .post-content h4,
.related-posts a:hover .post-content h4 {
    color: var(--primary-color);
}

.sidebar-widget.newsletter p {
    margin-bottom: 1.25rem;
}

.sidebar-widget.cta {
    background-color: var(--primary-color);
    color: white;
}

.sidebar-widget.cta h3 {
    color: white;
}

.sidebar-widget.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.sidebar-widget.cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.sidebar-widget.cta .btn-primary:hover {
    background-color: transparent;
    color: white;
}

/* Single Article Page */
.article {
    padding: 5rem 0;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.article-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.article-featured-image {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-introduction {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.article-section {
    margin-bottom: 2.5rem;
}

.article-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.article-section h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.article-section ul,
.article-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-section ul li,
.article-section ol li {
    margin-bottom: 0.75rem;
}

.article-conclusion {
    margin-bottom: 2.5rem;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.article-share span {
    font-weight: 500;
}

/* =================== 
   15. Legal Pages Styles
   =================== */
.legal-section {
    padding: 5rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.last-updated {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-section-content {
    margin-bottom: 3rem;
}

.legal-section-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.legal-section-content h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.legal-section-content p,
.legal-section-content ul,
.legal-section-content ol {
    margin-bottom: 1.5rem;
}

.legal-section-content ul,
.legal-section-content ol {
    padding-left: 1.5rem;
}

.legal-section-content ul li,
.legal-section-content ol li {
    margin-bottom: 0.75rem;
}

/* =================== 
   16. Thank You Page
   =================== */
.thanks-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 5rem 0;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-icon svg {
    width: 80px;
    height: 80px;
    color: var(--success-color);
}

.thanks-content h1 {
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.thanks-details {
    text-align: left;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.thanks-details h3 {
    margin-bottom: 1rem;
}

.thanks-details ol {
    padding-left: 1.5rem;
}

.thanks-details ol li {
    margin-bottom: 1rem;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* =================== 
   17. Responsive Styles
   =================== */
@media (max-width: 1200px) {
    .hero {
        padding: 4rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .blog-main .container {
        grid-template-columns: 1fr;
    }
    
    .blog-filter {
        display: none;
    }
    
    .article-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-color);
        z-index: 1000;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .testimonial {
        width: calc(100% - 2rem);
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .blog-article {
        flex-direction: column;
    }
    
    .article-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .stat {
        align-items: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons a {
        width: 100%;
    }
    
    .thanks-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .thanks-cta a {
        width: 100%;
    }
}
