   :root {
            --primary: #BF3131;
            --secondary: #7D0A0A;
            --third: #EAD196;
            --bg: #f7f7f7;
            --text: #1d1d1d;
            --text-secondary: #666666;
            --white: #ffffff;
            --overlay: rgba(0, 0, 0, 1);
            --font-h1: 42px;
            --font-h2: 32px;
            --font-h3: 24px;
            --font-p: 16px;
            --font-btn: 16px;
            --image-height: 500px;
            --padding-large: 80px;
            --padding-medium: 50px;
            --padding-small: 30px;
            --padding-xsmall: 15px;
        }





 /* Top Section */
        .top-section {
            max-width: 1300px;
            margin: 0 auto;
            padding: var(--padding-medium) var(--padding-xsmall);
            display: flex;
            flex-wrap: nowrap;
            gap: 20px;
            align-items: center; /* Vertically center text with image */
        }

        .text-section {
            flex: 0 0 45%;
            padding: var(--padding-small);
            display: flex;
            flex-direction: column;
            justify-content: center; /* Center content vertically */
        }

        .text-section h1 {
            font-size: 42px;
            margin-bottom: var(--padding-xsmall);
            font-weight: 700;
        }

        .text-section p {
            font-size: var(--font-p);
            color: var(--text-secondary);
            margin-bottom: var(--padding-xsmall);
            line-height: 1.6;
        }

        .image-section {
            flex: 0 0 55%;
            padding: var(--padding-small);
        }

        .image-section img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 10px;
            /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
        }

        .rating-container {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: var(--padding-xsmall);
        }

        .stacked-images {
            display: flex;
            position: relative;
            width: 100px;
            height: 40px;
        }

        .stacked-images img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            position: absolute;
            border: 1px solid rgb(255, 219, 17);
        }

        .stacked-images img:nth-child(1) { left: 0; z-index: 3; }
        .stacked-images img:nth-child(2) { left: 20px; z-index: 2; }
        .stacked-images img:nth-child(3) { left: 40px; z-index: 1; }

        .rating-text {
            font-size: var(--font-p);
            font-weight: bold;
        }

        .rating-text span {
            color: var(--secondary);
        }

        .rating-text p {
            font-size: var(--font-p);
            color: var(--text-secondary);
        }

        .buttons-container {
            display: flex;
            gap: 10px;
            margin-top: var(--padding-xsmall);
        }

        .buttons-container button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-size: var(--font-btn);
            color: var(--white);
            cursor: not-allowed; /* Unclickable */
            opacity: 0.9;
        }

        .buttons-container button:nth-child(1) { background: var(--third); }
        .buttons-container button:nth-child(2) { background: var(--primary); }
        .buttons-container button:nth-child(3) { background: var(--secondary); }

        /* Bottom Section */
        .bottom-section {
            /* background: var(--bg); */
            padding: var(--padding-large) var(--padding-xsmall);
            max-width: 1200px;
            margin: 0 auto;
        }

        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 2fr));
            gap: 20px;
            justify-content: center;
        }

        .card {
            background: var(--white);
            border-radius: 12px;
            padding: var(--padding-xsmall);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px 8px 0 0;
            margin-bottom: var(--padding-xsmall);
        }

        .card h2 {
            font-size: var(--font-h2);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .card p {
            font-size: var(--font-p);
            color: var(--text-secondary);
            margin-bottom: var(--padding-xsmall);
            line-height: 1.5;
        }

        .card .hashtag {
            font-size: 14px;
            color: var(--secondary);
            margin-bottom: var(--padding-xsmall);
            font-weight: 500;
        }

        .card button{
            border: none;
            outline: none;
        }
        .card button a{
            text-decoration: none;
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: var(--font-btn);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .card button a:hover {
            background: var(--third);
        }

        @media (max-width: 768px) {
            .top-section {
                flex-direction: column-reverse;
                flex-wrap: wrap;
            }

            .text-section, .image-section {
                flex: 0 0 100%;
            }

            .text-section h1 {
                font-size: calc(var(--font-h1) * 0.8);
            }

            .card {
                width: 100%;
            }
        }