 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        .header {
            background: white;
            padding: 20px 40px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 20px;
            font-weight: 700;
            color: #333;
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .login-btn {
            background: transparent;
            border: 1px solid #ddd;
            color: #666;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .login-btn:hover {
            border-color: #999;
            color: #333;
        }

        .signup-btn {
            background: #17a2b8;
            border: none;
            color: white;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .signup-btn:hover {
            background: #138496;
        }

        /* Main Content */
        .container {
            width: 100%;
            background: white;
            margin: 0;
            border-radius: 0;
            box-shadow: none;
            overflow: hidden;
        }

        .content {
            width: 100%;
            padding: 40px 60px 60px 60px;
        }

        h1 {
            font-size: 28px;
            font-weight: 600;
            color: #333;
            margin-bottom: 30px;
        }

        .section {
            margin-bottom: 40px;
        }

        .section h2 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section p {
            font-size: 14px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 15px;
            text-align: justify;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
            }

            .auth-buttons {
                width: 100%;
                justify-content: center;
            }

            .container {
                margin: 20px;
                margin-top: 20px;
            }

            .content {
                padding: 25px;
            }

            h1 {
                font-size: 24px;
                text-align: center;
            }

            .section h2 {
                font-size: 16px;
            }

            .section p {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 12px 15px;
            }

            .auth-buttons {
                flex-direction: column;
                width: 100%;
                gap: 10px;
            }

            .login-btn, .signup-btn {
                width: 100%;
                text-align: center;
                padding: 10px 20px;
            }

            .content {
                padding: 20px;
            }

            .container {
                margin: 10px;
                margin-top: 15px;
            }
        }