
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            text-decoration: none;
        }
        
        body {
            background-color: white;
            color: #333;
            line-height: 1.6;
           
        }
        
        .container {
            width: 80%;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            padding: 20px 0;
            background-color: #5bb019d4;
            color: white;
            border-radius: 5px 5px 0 0;
        }
        .fa-cart-shopping, .fa-shopping-cart{
          color: #000000;
        }
        .content {
            background-color: white;
            padding: 30px;
            border-radius: 0 0 5px 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        h1 {
            margin-bottom: 10px;
        }
        
        p {
            margin-bottom: 20px;
        }

        /* Contact info section styling */
        .contact-info {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ddd;
        }
        
        .contact-info h2 {
            margin-bottom: 15px;
            color: #333;
            text-align: center;
        }
        
        .contact-details {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
        
        .contact-details div {
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 4px;
        }
        
        .contact-details h3 {
            margin-bottom: 10px;
            color: #5bb019d4;
        }

        .contact-details pre {
            white-space: pre-wrap;
            font-family: inherit;
            font-size: inherit;
            margin: 0;
        }

        /* Dropdown button styling */
        .form-dropdown-trigger {
            width: 100%;
            padding: 15px;
            background-color: #5bb019d4;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .form-dropdown-trigger:hover {
            background-color: #4a9916;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .form-dropdown-trigger i {
            transition: transform 0.3s ease;
        }

        .form-dropdown-trigger.active i {
            transform: rotate(180deg);
        }

        /* Form container styling */
        .form-container {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
            opacity: 0;
        }

        .form-container.show {
            max-height: 1000px;
            opacity: 1;
            transition: max-height 0.5s ease-in, opacity 0.3s ease-in 0.1s;
        }

        .form-wrapper {
            padding: 20px 0;
        }
        
        .contact-form {
            display: grid;
            gap: 20px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        label {
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        input, textarea, select {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        button[type="submit"] {
            background-color: #5bb019d4;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        button[type="submit"]:hover {
            background-color: #000000;
        }
        
        .error {
            color: #dc3545;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        
        input.invalid, textarea.invalid, select.invalid {
            border-color: #dc3545;
        }
        
        .success-message {
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            display: none;
        }
        
        @media (max-width: 600px) {
            .content {
                padding: 20px;
            }
            
            .contact-form {
                gap: 15px;
            }
            
            .contact-details {
                grid-template-columns: 1fr;
            }

            .form-dropdown-trigger {
                padding: 12px;
                font-size: 14px;
            }
        }