      body, html {
            margin: 0;
            padding: 0;
            #font-family: 'Roboto', Arial, sans-serif;
            font-family: 'Playfair Display', serif;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
            	a {
          	color:black;
        }

        h1, h2 {
            font-family: 'Playfair Display', serif;
        }

        main {
            flex: 1;
        }

        .logo {
            width: 200px;
            margin-bottom: 20px;
        }

        .search-container {
            display: flex;
            max-width: 1000px;
            width: 90%;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
            border: 5px solid white;
        }

.search-box {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    outline: none;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Faint shadow */
}

        .search-button {
            background: #ff3d3d;
            color: white;
            border: none;
            padding: 15px 40px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 30px;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
            position: relative;
            box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
            margin-left: -5px;
        }

        .search-button:hover {
            background: #000; //#e63232;
            transform: scale(1.05);
        }

        /* Main Content */
        .content {
            padding: 40px 20px;
            text-align: center;
        }

        .content h1 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .content p {
            font-size: 16px;
            color: #666;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .brand-column {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.01);
            border: 1px solid #f9f9f9;
        }

        .brand-column h2 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .brand-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

.brand-column {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.01);
    border: 1px solid #f9f9f9;
    max-height: 288px; /* Set max height */
    overflow-y: auto; /* Enable vertical scrolling */
}

        /* Footer Styles */
        footer {
            background: #222;
            color: white;
            padding: 40px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            text-align: left;
        }

        .footer-text {
            flex: 1;
            margin-right: 20px;
        }

        .footer-text h2 {
            font-size: 20px;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin: 0 0 10px 0;
        }

        .footer-text p {
            font-size: 14px;
            margin: 0;
            color: #ccc;
        }

        .newsletter {
            display: flex;
            max-width: 350px;
            width: 100%;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .newsletter input {
            flex: 1;
            border: none;
            padding: 15px 20px;
            font-size: 14px;
            outline: none;
        }

        .newsletter button {
            background: #ff3d3d;
            color: white;
            border: none;
            padding: 15px 20px;
            font-size: 14px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .newsletter button:hover {
            background: #e63232;
        }

        .footer-bottom {
            margin-top: 20px;
            font-size: 14px;
            color: #ccc;
            text-align: center;
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-text p {
                margin-bottom: 30px;
            }
        }