  .tm-section {
        position: relative;
        width: 100%;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 100px 0;
        color: white;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    .tm-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85));
        z-index: 1;
    }

    .tm-container {
        position: relative;
        z-index: 2;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .tm-header {
        text-align: center;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .tm-subtitle {
        display: block;
        color: #eab465;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .tm-title {
        font-family: 'Istok Web', serif;
        font-size: 3.5rem;
        font-weight: 700;
        margin: 0 0 25px 0;
        line-height: 1.1;
        color: white;
    }

    .tm-desc {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #d1d5db;
        font-weight: 300;
    }

    .tm-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .glass-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        padding: 35px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    .glass-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.12);
        border-color: #eab465;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .tm-quote-icon {
        font-size: 2rem;
        color: #eab465;
        margin-bottom: 15px;
        opacity: 0.8;
    }

    .tm-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #f3f4f6;
        font-style: italic;
        margin-bottom: 25px;
        font-weight: 300;
    }

    .tm-author-box {
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .tm-author-name {
        font-family: 'Istok Web', serif;
        font-size: 1rem;
        font-weight: 700;
        color: white;
        letter-spacing: 0.5px;
        margin: 0;
    }

    .tm-load-more-container {
        text-align: center;
        margin-top: 20px;
    }

    .tm-load-more-btn {
        background: transparent;
        color: #eab465;
        border: 1px solid #eab465;
        padding: 12px 30px;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .tm-load-more-btn:hover {
        background: #eab465;
        color: #1a4d45;
    }

    .tm-item-hidden {
        display: none;
    }

    @media (max-width: 768px) {
        .tm-grid {
            grid-template-columns: 1fr;
        }

        .tm-title {
            font-size: 2.5rem;
        }

        .glass-card {
            padding: 25px;
        }
    }

