
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #333;
            padding: 20px; /* Unified padding */
        }
        
        .main-title {
            font-size: 3.2rem;
            color: white;
            text-align: center;
            padding: 20px 20px 40px 20px;
            font-weight: 700;
            letter-spacing: -1.5px;
            text-shadow: 0 4px 15px rgba(0,0,0,0.2);
			padding-top: 110px;
			 text-align: left;
        }

        .container-wrapper {
            display: flex;
            justify-content: center;
            align-items: stretch; /* Make containers same height */
            gap: 20px; /* Space between containers */
            width: 100%;
            
        }

        .container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 100%; /* Take up available space in wrapper */
            max-width: 500px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
        }
		
		.brand-logo {
			position: absolute;
			top: 20px;
			left: 20px;
			width: 250px; /* You can adjust this value to make your logo bigger or smaller */
			z-index: 1000;
		}
		
        h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -1px;
        }
		
		h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .subtitle {
            color: #7f8c8d;
            font-size: 1.1rem;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .tools-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            flex-grow: 1; /* Allows list to fill space, helping alignment */
        }

        .tool-item {
            padding: 20px 25px;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .tool-item.clickable {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            cursor: pointer;
            text-decoration: none;
            display: block;
        }

        .tool-item.clickable:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(52, 152, 219, 0.4);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .tool-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .tool-description {
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        /* --- RESPONSIVE DESIGN --- */
        
        @media (max-width: 1040px) {
            .container-wrapper {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            .main-title {
                font-size: 2.2rem;
                padding-bottom: 30px;
				
            }
            .container {
                padding: 40px 30px;
            }
            h1 {
                font-size: 2rem;
            }
            .tool-name {
                font-size: 1.1rem;
            }
			
}
        }
