        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f8f4e3; /* Ivory White */
            color: #333;
        }

        header {
            background-color: #2c3e50; /* Rich Navy Blue */
            color: white;
            text-align: center;
            padding: 1.5rem 0;
        }

        header h1 {
            font-size: 2.5rem;
            color: #d4af37; /* Champagne Gold */
        }

        nav {
            background-color: #555555; /* Charcoal Gray */
            display: flex;
            justify-content: space-around;
            padding: 0.5rem;
        }

        nav a {
            color: #f8f4e3; /* Ivory White */
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            text-transform: uppercase;
            transition: background-color 0.3s;
        }

        nav a:hover {
            background-color: #d4af37; /* Champagne Gold */
            color: #2c3e50; /* Rich Navy Blue */
            border-radius: 5px;
        }

        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
        }

        .cocktail-card {
            display: flex;
            width: 100%;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .cocktail-card:hover {
            transform: scale(1.02);
        }

        .cocktail-card img {
            width: 250px;
            height: 300px;
            object-fit: cover;
        }

        .cocktail-details {
            flex: 1;
            padding: 1rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .cocktail-title {
            font-size: 1.8rem;
            color: #50c878; /* Emerald Green */
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .cocktail-section {
            margin-bottom: 1rem;
        }

        .cocktail-section h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #2c3e50; /* Rich Navy Blue */
        }

        .cocktail-section p {
            font-size: 1rem;
            line-height: 1.5;
        }


        .cocktail {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .cocktail:hover {
            transform: scale(1.05);
        }

        .cocktail img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .cocktail h3 {
            text-align: center;
            padding: 1rem 0;
            font-size: 1.5rem;
            background-color: #50c878; /* Emerald Green */
            color: white;
            margin: 0;
        }

        .cocktail p {
            padding: 1rem;
            text-align: center;
            font-size: 1rem;
        }

        .cocktail .recipe {
            padding: 1rem;
            font-size: 0.9rem;
            background-color: #f8f4e3; /* Ivory White */
            border-top: 1px solid #50c878; /* Emerald Green */
        }
        
        .two-cards-container {
            display: flex;
            justify-content: space-between;
            width: 90%;
        }

        .half-card {
            width: 45%;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .half-card:hover {
            transform: scale(1.02);
        }

        .half-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .half-card .cocktail-details {
            padding: 1rem;
        }

        footer {
            text-align: center;
            background-color: #555555; /* Charcoal Gray */
            color: white;
            padding: 1rem;
        }

        @media (max-width: 600px) {
            header h1 {
                font-size: 2rem;
            }

            nav {
                flex-direction: column;
            }

            .cocktail-gallery {
                grid-template-columns: 1fr;
            }
            
            
            .cocktail-card {
                flex-direction: column;
            }

            .cocktail-card img {
                width: 100%;
                height: auto;
            }

            .cocktail-details {
                padding: 1rem;
            }

            .two-cards-container {
                flex-direction: column;
                align-items: center;
            }

            .half-card {
                width: 90%;
                margin-bottom: 2rem;
            }
        }
        }