@charset "utf-8";
/* CSS Document */

		/* Logo Styles */
        .logo {
    		max-width: 200px; /* Keeps the logo at a reasonable size */
    		height: auto;
    		margin-bottom: 1rem;
    		display: block;
    		margin-left: auto;
    		margin-right: auto;
    		margin-top: 0px;
            /* Remove the `/*` below if you want to force a square logo into a circle */
            /* border-radius: 50%; */ 
        }

/*        :root {
			--bg-color: #fcfcfc;
            --text-color: #333;
            --accent-color: #2c3e50;
            --secondary-color: #ecf0f1;
        } */

        body {
    		font-family: system-ui, -apple-system, sans-serif;
    		margin: 0;
    		padding: 0;
    		background-color: #7DEFA8;
    		color: var(--text-color);
    		line-height: 1.6;
        }

        /* Container & Layout */
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }
	
        section {
            margin-bottom: 4rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }

        /* Header / Description */
        header {
    		text-align: center;
    		padding-top: 3rem;
    		padding-right: 1rem;
    		padding-left: 1rem;
    		padding-bottom: 2rem;
    		background-color: #99F6FF;
    		color: #056711;
        }

        header h1 {
            margin: 0;
            font-size: 3.5rem;
            font-family: Lora;
			letter-spacing: 1px;
        }

        header p {
    		font-size: 1.2rem;
    		margin-top: 0.5rem;
    		color: #333333;
        }

        .description {
    		font-size: 1.1rem;
    		text-align: justify;
    		margin-top: 3rem;
    		font: bold;
        }

        /* Our Brands */
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .brand-card {
    		padding: 1.5rem;
    		border-radius: 8px;
    		text-align: center;
			background-color:cornsilk;
        }

        .brand-card h3 {
            margin-top: 0;
            color: var(--accent-color);
        }

        /* Contact Area */
        .contact-area {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
        }

        /* Footer & Modals */
        footer {
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
            color: #666;
        }

        footer button {
            background: none;
            border: none;
            color: var(--accent-color);
            text-decoration: underline;
            cursor: pointer;
            padding: 0;
            font-size: 0.9rem;
            margin: 0 10px;
        }

		.contact-btn {
			display: inline-block;
			padding: 0.6rem 1.2rem;
			background-color: #0F172A;
			color: white;
			text-decoration: none;
			border-radius: 6px;
			font-weight: 500;
			font-size: 0.9rem;
			text-align: center;
			transition: background 0.2s ease;
			margin-top: 1rem;
		}

		.contact-btn:hover {
			background-color: #007BFF
		}
        /* The Dialog (Modal) Magic */
        dialog {
            border: none;
            border-radius: 8px;
            padding: 2rem;
            max-width: 600px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        dialog::backdrop {
            background: rgba(0, 0, 0, 0.5); /* The dark overlay */
            backdrop-filter: blur(2px);
        }

        .close-btn {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 1rem;
            float: right;
        }

/* Legal Notice Formatting */
        .policy-meta {
            font-size: 0.85rem;
            color: #7f8c8d;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .tldr-box {
            background-color: var(--secondary-color);
            border-left: 4px solid var(--accent-color);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }

        .tldr-box h3 {
            margin-top: 0;
            font-size: 1.1rem;
        }

        .tldr-box ul {
            margin-bottom: 0;
            padding-left: 1.2rem;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }

        .data-table th, .data-table td {
            text-align: left;
            padding: 0.75rem;
            border-bottom: 1px solid #ddd;
        }

        .data-table th {
            background-color: #f8f9fa;
            color: var(--accent-color);
        }
        
        .policy-content h3 {
            margin-top: 2rem;
            color: var(--accent-color);
            border-bottom: 1px solid #eee;
            padding-bottom: 0.3rem;
        }
