@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.blog-hero {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #2d5a2a 0%, #488444 50%, #5fa65a 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.blog-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.blog-hero-text {
    padding: 0;
    text-align: left;
}

.blog-hero-text .logo {
    display: none;
}

.blog-hero-text h1 {
    font-size: 3.8em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    margin-top: 0;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blog-hero-text .subtitle {
    font-size: 1.35em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.blog-meta {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.blog-meta .author {
    color: #ffffff;
    font-weight: 600;
}

.blog-meta .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.blog-meta .date {
    color: rgba(255, 255, 255, 0.8);
}

.blog-hero-image {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
}

.blog-hero-image::before {
    display: none;
}

.blog-hero-image img {
    width: 100%;
    height: auto;
    max-width: 700px;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 24px;
    background: #f3f1eb;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 0;
}

@media (max-width: 1024px) {
    .blog-hero {
        padding: 100px 30px 50px;
    }

    .blog-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }

    .blog-hero-image {
        order: 1;
    }

    .blog-hero-text {
        order: 2;
        text-align: center;
    }

    .blog-hero-text h1 {
        font-size: 2.5em;
        color: #ffffff;
    }

    .blog-hero-text .subtitle {
        font-size: 1.2em;
        color: #ffffff;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 90px 25px 40px;
    }

    .blog-hero-text h1 {
        font-size: 2em;
        margin-bottom: 15px;
        color: #ffffff;
    }

    .blog-hero-text .subtitle {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: #ffffff;
    }

    .blog-meta {
        font-size: 0.9em;
        margin-top: 15px;
    }

    .blog-hero-image img {
        max-width: 100%;
        padding: 0;
    }

    .blog-content h2 {
        font-size: 1.35em !important;
        margin-top: 25px !important;
        margin-bottom: 12px !important;
    }

    .blog-content p {
        font-size: 1.08em;
        margin-bottom: 12px !important;
        font-weight: 400 !important;
        line-height: 1.9 !important;
        color: #333 !important;
    }

    .blog-content .intro-text {
        font-size: 1.12em;
        margin-bottom: 16px !important;
        font-weight: 400 !important;
        line-height: 1.95 !important;
        color: #333 !important;
    }

    .blog-content li {
        font-size: 1.08em;
        margin-bottom: 6px !important;
        padding-left: 3px;
        font-weight: 400 !important;
        line-height: 1.7 !important;
        color: #333 !important;
    }

    .blog-content ul,
    .blog-content ol {
        margin: 16px 0 !important;
        padding-left: 22px;
    }

    .sidebar-card p,
    .sidebar-info-card li,
    .sidebar-info-card li a {
        font-weight: 500 !important;
        color: inherit !important;
        line-height: inherit !important;
    }

    .blog-content .cta-banner p {
        font-weight: 500 !important;
        color: white !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 80px 15px 30px;
    }

    .blog-hero-content {
        gap: 30px;
    }

    .blog-hero-text h1 {
        font-size: 1.7em;
        margin-bottom: 12px;
        color: #ffffff;
    }

    .blog-hero-text .subtitle {
        font-size: 1em;
        margin-bottom: 15px;
        color: #ffffff;
    }

    .blog-meta {
        font-size: 0.85em;
        margin-top: 12px;
    }

    .blog-hero-image img {
        padding: 0;
    }

    .blog-content h2 {
        font-size: 1.28em !important;
        margin-top: 22px !important;
        margin-bottom: 10px !important;
    }

    .blog-content p {
        font-size: 1.08em !important;
        margin-bottom: 0px !important;
        font-weight: 400 !important;
        line-height: 1.95 !important;
        color: #333 !important;
    }

    .blog-content .intro-text {
        font-size: 1.1em !important;
        margin-top: -20px !important;
        margin-bottom: 10px !important;
        font-weight: 400 !important;
        line-height: 2 !important;
        color: #333 !important;
    }

    .blog-content li {
        font-size: 1.08em !important;
        margin-bottom: 4px !important;
        padding-left: 3px;
        font-weight: 400 !important;
        line-height: 1.7 !important;
        color: #333 !important;
    }

    .blog-content ul,
    .blog-content ol {
        margin: 16px 0 !important;
        padding-left: 20px;
    }

    .sidebar-card p,
    .sidebar-info-card li,
    .sidebar-info-card li a {
        font-weight: 500 !important;
        color: inherit !important;
        line-height: inherit !important;
    }

    .blog-content .cta-banner p {
        font-weight: 500 !important;
        color: white !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }
}

.blog-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.blog-content {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #000;
}

.blog-content h2 {
    font-size: 2em;
    font-weight: 700;
    color: #488444;
    margin-top: 15px;
    margin-bottom: 18px;
    line-height: 1.3;
}

.blog-content h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #488444;
    margin-top: 15px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 1.15em;
    margin-bottom: 10px;
    color: #000;
    font-weight: 400;
    line-height: 1.8;
}

.blog-content .intro-text {
    font-size: 1.22em;
    color: #000;
    margin-bottom: 18px;
    line-height: 1.9;
    font-weight: 500;
}

.blog-content ul {
    margin: 10px 0;
    padding-left: 25px;
}

.blog-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.blog-content li {
    font-size: 1.15em;
    margin-bottom: 10px;
    color: #000;
    font-weight: 400;
    line-height: 1.7;
    padding-left: 5px;
}

.blog-content strong {
    color: #488444;
    font-weight: 600;
}

.blog-content em {
    font-style: italic;
    color: #2d5a2a;
}

.blog-content .highlight-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 100%);
    border-left: 5px solid #488444;
    padding: 30px;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-content .highlight-box p {
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
    font-size: 1.15em;
}

.blog-content .info-box {
    background: #f0f8ff;
    border: 2px solid #0f33be;
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
}

.blog-content .success-box {
    background: #e8f5e9;
    border: 2px solid #488444;
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 35px 0;
    display: block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-content a img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-content a img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.blog-content a {
    color: #0f33be;
    text-decoration: none;
    font-weight: 400;
    border-bottom: none;
    transition: all 0.3s ease;
}

.blog-content a:hover {
    color: #488444;
    border-bottom: none;
}

.blog-content blockquote {
    border-left: 4px solid #488444;
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    color: #000;
    font-weight: 500;
    background: #f9f9f9;
    border-radius: 8px;
}

.blog-content code {
    background: #f4f4f4;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    color: #d63384;
}

.blog-content pre {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 25px 0;
}

.blog-content pre code {
    background: none;
    padding: 0;
    color: #000;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.blog-content table th {
    background: #488444;
    color: white;
    padding: 14px;
    text-align: left;
    font-weight: 600;
}

.blog-content table td {
    padding: 14px;
    border: 1px solid #ddd;
    color: #000;
    font-weight: 500;
}

.blog-content table tr:nth-child(even) {
    background: #f9f9f9;
}

.blog-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-card {
    background: linear-gradient(135deg, #2d5a2a 0%, #488444 50%, #5fa65a 100%);
    border-radius: 16px;
    padding: 35px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(72, 132, 68, 0.3);
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.sidebar-card p {
    font-size: 1em;
    margin-bottom: 10px;
    opacity: 0.95;
    line-height: 1.6;
}

.sidebar-card .highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin: 8px 0;
    font-weight: 600;
}

.sidebar-card .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.sidebar-card .stat-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 10px;
}

.sidebar-card .stat-box .icon {
    font-size: 2em;
    margin-bottom: 8px;
}

.sidebar-card .stat-box .label {
    font-size: 0.85em;
    opacity: 0.9;
}

.sidebar-card .stat-box .value {
    font-size: 1.1em;
    font-weight: 700;
    margin-top: 5px;
}

.sidebar-cta {
    background: white;
    color: #488444;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05em;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #2d5a2a;
    border-bottom: none;
}

.sidebar-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf8 100%);
    border: 2px solid #e8f5e9;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(72, 132, 68, 0.08);
    transition: all 0.3s ease;
}

.sidebar-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(72, 132, 68, 0.15);
}

.sidebar-info-card h4 {
    font-size: 1.3em;
    font-weight: 700;
    color: #488444;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e8f5e9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-info-card h4:before {
    content: "";
    font-size: 1.2em;
}

.sidebar-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-info-card li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #000;
    font-size: 0.98em;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-info-card li:hover {
    padding-left: 8px;
    color: #488444;
}

.sidebar-info-card li:last-child {
    border-bottom: none;
}

.sidebar-info-card li:before {
    content: "✓";
    color: #488444;
    font-weight: bold;
    font-size: 1.2em;
    background: #e8f5e9;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-info-card li a {
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-grow: 1;
    font-weight: 500;
}

.sidebar-info-card li a:hover {
    color: #488444;
    padding-left: 5px;
}

.blog-content .cta-banner {
    background: linear-gradient(135deg, #3a7034 0%, #488444 50%, #2d5a2a 100%);
    background-size: 200% 200%;
    color: white;
    padding: 50px 40px;
    text-align: center;
    border-radius: 16px;
    margin: 60px 0 40px;
    box-shadow: 0 10px 40px rgba(72, 132, 68, 0.3);
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.blog-content .cta-banner h3 {
    font-size: 2em;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 700;
    color: white;
}

.blog-content .cta-banner p {
    font-size: 1.15em;
    margin-bottom: 30px;
    color: white;
    opacity: 0.95;
}

.blog-content .cta-button {
    background-color: white;
    color: #488444;
    padding: 16px 45px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    animation: pulse-button 2s ease-in-out infinite;
}

@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.blog-content .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background-color: #f8f9fa;
    color: #488444;
    border-bottom: none;
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 30px;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
    }
}

.blog-back-btn {
    position: absolute;
    top: 30px;
    left: 40px;
    background: transparent;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-back-btn::before {
    content: "🏠";
    font-size: 24px;
    filter: brightness(0) invert(1);
    display: inline-block;
}

.blog-back-btn:hover {
    transform: translateX(-5px);
    border-bottom: none;
}

@media (max-width: 768px) {
    .blog-back-btn {
        top: 60px;
        left: 20px;
        font-size: 14px;
    }

    .blog-back-btn::before {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .blog-back-btn {
        top: 50px;
        left: 15px;
        font-size: 13px;
    }

    .blog-back-btn::before {
        font-size: 16px;
    }
}