        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fCfCfC;
            color: #333;
        }

        .contact-header {
            background-color: #bb181d;
            color: white;
            padding: 10px 0;
            text-align: center;
        }

         .contact-footer {
            background-color: #bb181d;
            color: white;
            padding: 15px 0;
            text-align: center;
            margin-top: 30px;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .contact-item {
            font-size: 0.9em;
        }

        .contact-item strong {
            font-weight: bold;
            margin-right: 5px;
        }

        @media (max-width: 600px) {
            .contact-info {
                flex-direction: column;
                gap: 5px;
            }
        }

        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }

        .card {
            background: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            max-width: 600px;
            width: 90%;
            margin-bottom: 20px;
        }

        .card h1 {
            font-size: 1.8em;
            margin-bottom: 0.5em;
            color: #000;
        }

        .card p {
            margin: 0.5em 0;
            font-size: 1em;
        }

        .card a {
            text-decoration: none;
            color: #000;
        }

        .card a:hover {
            text-decoration: underline;
        }

        .featured-app {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 1200px;
        }

        .apps-header {
            font-size: 1.5em;
            margin-bottom: 0px;
            margin-top: 10px;
            text-align: center;
            color: #333;
        }

        .apps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
            width: 100%;
            max-width: 1200px;
        }

        .app-card {
            background: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .app-card.featured {
            max-width: 400px;
            transform: scale(1.05);
        }

        .app-card:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 12px rgba(187, 24, 29, 0.2);
        }

        .app-card.featured:hover {
            transform: scale(1.08);
        }

        .app-card img {
            width: 100%;
            height: 200px;
            object-fit: contain;
            background-color: #f8f8f8;
        }

        .app-card .content {
            padding: 15px;
            text-align: left;
        }

        .app-card h3 {
            margin: 0 0 10px 0;
            font-size: 1.2em;
            color: #bb181d;
        }

        .app-card p {
            margin: 0 0 15px 0;
            font-size: 0.9em;
            color: #666;
        }

        .store-buttons {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .store-btn {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid #000;
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.8em;
            font-weight: bold;
            text-align: center;
            transition: all 0.3s ease;
        }

        .store-btn.red {
            background-color: white;
            color: black;
        }

        .store-btn.blue {
            background-color: white;
            color: black;
        }

        .store-btn:hover {
            transform: translateY(-2px);
        }

        .store-btn.red:hover {
            background-color: #9a1419;
            color: white;
        }

        .store-btn.blue:hover {
            background-color: #0070B0;
            color: #fff;
        }

        .store-btn.disabled {
            border-color: #ccc;
            color: #999;
            background-color: #f5f5f5;
            cursor: not-allowed;
        }

        .store-btn.disabled:hover {
            transform: none;
        }