        .card-header {
            border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
            background: none;
            border: 0;
        }
        .col-6 {
            width: 50%;
        }

        .shape-diagonal-top-right {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 50%;
            background: #e32222;
            clip-path: polygon(100% 0, 0 0, 100% 100%);
        }

		.shape-diagonal-bottom-right {
		    position: absolute;
		    bottom: 0;
		    right: 0;
		    width: 40%;
		    height: 40%;
		    background: #e32222;
		    clip-path: polygon(100% 100%, 0% 100%, 100% 70%);
		}

		.card-container {
		    padding: 100px;
		    width: 100%;
		    height: 100%;
		    display: flex;
		    flex-direction: column;
		    align-items: center;
		}

        .card {
            position: relative;
            z-index: 10;
            background: white;
            border-radius: 32px;
            padding: 50px 0px 0px 0px;
            padding-left: 50px;
            max-width: 1000px;
            width: 100%;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            gap: 50px;
            animation: slideUp 0.8s ease-out;
        }

		.card-illustration img {
		     border-radius: 32px; 
		}

        .card-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-title {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .card-subtitle {
            font-size: 14px;
            color: #666;
            margin-bottom: 0px;
            line-height: 1.6;
        }

		.card-body {
		    display: flex;
		    flex-direction: row;
		}	

        .download-button {
            background: #e32222;
            color: white;   
            border: none;
            padding: 12px 32px;
            border-radius: 24px;
            font-size: 8px;
            font-weight: 700;
            cursor: pointer;
            width: fit-content;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            animation: buttonPulse 2s ease-in-out infinite;
        }

        .download-button:hover {
            background: #d62828;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
        }

        .card-description {
            font-size: 13px;
            color: #555;
            line-height: 1.8;
            margin-top: 0px;
        }

        .card-illustration {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
            margin-top: 25px;
            margin-right: 25px;
        }

        .illustration-image {
            width: 500px;
            height: 100%;
            object-fit: contain;
            animation: slideUp 0.8s ease-out;
        }

        .contact-info {
            display: grid;
            gap: 12px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        @keyframes slideUp {
            from {
                transform: translateY(40px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes buttonPulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(230, 57, 70, 0);
            }
        }

        .contact-info {
          display: grid;
          gap: 12px; /* even spacing between phone, email, timer */
        }

        .contact-item {
          display: flex;
          align-items: center;
          gap: 10px;
        }

        .contact-item img {
          width: 13px;
          height: 13px; /* smaller icons */
        }

        .phone-number a,
        .email a {
          font-weight: 700; /* bold like the mock */
          color: #111827; /* near-black */
          font-size: 13px; /* bold already applied above */
          text-decoration: none;
        }

        .hours {
          font-weight: 500; /* slightly lighter than phone/email */
          color: #111827;
          font-size: 14px; /* hours slightly lighter/smaller */
          text-decoration: none;
        }

        @media (max-width: 768px) {
            .card {
                grid-template-columns: 1fr;
                padding: 40px 30px;
                gap: 30px;
            }

            .card-title {
                font-size: 24px;
            }

            .card-illustration {
                min-height: 300px;
            }
        }