        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lexend Deca', sans-serif;
            background-color: hsl(0, 0%, 95%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center; /* Vertically center the content */
            padding: 20px;
        }
        
        /* Card Container */
        .card-container {
            display: flex;
            max-width: 920px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        /* Individual Cards */
        .card {
            padding: 48px;
            color: hsla(0, 0%, 100%, 0.75);
        }
        
        .card h1 {
            font-family: 'Big Shoulders Display', cursive;
            color: hsl(0, 0%, 95%);
            text-transform: uppercase;
            margin: 35px 0 25px; /* 35px top, 0 right/left, 25px bottom */
            font-size: 40px;
        }
        
        .card p {
            line-height: 1.6;
            margin-bottom: 80px;
            font-size: 15px;
        }
        
        .card button {
            background-color: hsl(0, 0%, 95%);
            border: 2px solid hsl(0, 0%, 95%);
            border-radius: 25px;
            padding: 12px 30px;
            font-family: 'Lexend Deca', sans-serif;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .card button:hover {
            background-color: transparent;
            color: hsl(0, 0%, 95%) !important;
        }
        
        /* Specific Card Colors */
        .sedans {
            background-color: hsl(31, 77%, 52%);
        }
        
        .sedans button {
            color: hsl(31, 77%, 52%);
        }
        
        .suvs {
            background-color: hsl(184, 100%, 22%);
        }
        
        .suvs button {
            color: hsl(184, 100%, 22%);
        }
        
        .luxury {
            background-color: hsl(179, 100%, 13%);
        }
        
        .luxury button {
            color: hsl(179, 100%, 13%);
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .card-container {
                flex-direction: column;
                max-width: 327px;
            }
            
            .card p {
                margin-bottom: 25px;
            }
        }